GEOS 3.9.1
NodableSegmentString.h
1/**********************************************************************
2 *
3 * GEOS - Geometry Engine Open Source
4 * http://geos.osgeo.org
5 *
6 * Copyright (C) 2006 Refractions Research Inc.
7 *
8 * This is free software; you can redistribute and/or modify it under
9 * the terms of the GNU Lesser General Public Licence as published
10 * by the Free Software Foundation.
11 * See the COPYING file for more information.
12 *
13 *
14 **********************************************************************/
15
16#ifndef GEOS_NODING_NODABLESEGMENTSTRING_H
17#define GEOS_NODING_NODABLESEGMENTSTRING_H
18
19#include <geos/export.h>
20#include <geos/noding/SegmentString.h> // for inheritance
21
22namespace geos {
23namespace geom {
24class Coordinate;
25}
26}
27
28namespace geos {
29namespace noding { // geos::noding
30
37class GEOS_DLL NodableSegmentString : public SegmentString {
38private:
39protected:
40public:
41 NodableSegmentString(const void* newContext)
42 :
43 SegmentString(newContext)
44 { }
45
52 //virtual void addIntersection( const geom::Coordinate * intPt, int segmentIndex) =0;
53};
54
55} // namespace geos::noding
56} // namespace geos
57
58#endif // GEOS_NODING_NODABLESEGMENTSTRING_H
An interface for classes which support adding nodes to a segment string.
Definition NodableSegmentString.h:37
An interface for classes which represent a sequence of contiguous line segments.
Definition SegmentString.h:46
Basic namespace for all GEOS functionalities.
Definition IndexedNestedRingTester.h:26