GEOS  3.13.0dev
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 #pragma once
17 
18 #include <geos/export.h>
19 #include <geos/noding/SegmentString.h> // for inheritance
20 
21 namespace geos {
22 namespace geom {
23 class Coordinate;
24 }
25 }
26 
27 namespace geos {
28 namespace noding { // geos::noding
29 
36 class GEOS_DLL NodableSegmentString : public SegmentString {
37 private:
38 protected:
39 public:
40  NodableSegmentString(const void* newContext, geom::CoordinateSequence* newSeq)
41  :
42  SegmentString(newContext, newSeq)
43  { }
44 
51  //virtual void addIntersection( const geom::Coordinate * intPt, int segmentIndex) =0;
52 };
53 
54 } // namespace geos::noding
55 } // namespace geos
56 
The internal representation of a list of coordinates inside a Geometry.
Definition: CoordinateSequence.h:56
An interface for classes which support adding nodes to a segment string.
Definition: NodableSegmentString.h:36
An interface for classes which represent a sequence of contiguous line segments.
Definition: SegmentString.h:47
Basic namespace for all GEOS functionalities.
Definition: Angle.h:25