GEOS  3.9.1dev
NodableSegmentString.h
Go to the documentation of this file.
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 
22 namespace geos {
23 namespace geom {
24 class Coordinate;
25 }
26 }
27 
28 namespace geos {
29 namespace noding { // geos::noding
30 
38 private:
39 protected:
40 public:
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.
#define GEOS_DLL
Definition: export.h:28
An interface for classes which represent a sequence of contiguous line segments.
Definition: SegmentString.h:46
Basic namespace for all GEOS functionalities.
NodableSegmentString(const void *newContext)