GEOS 3.6.2
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 {
23 namespace geom {
24 class Coordinate;
25 }
26}
27
28namespace geos {
29namespace noding { // geos::noding
30
37class GEOS_DLL NodableSegmentString : public SegmentString
38{
39private:
40protected:
41public:
42 NodableSegmentString(const void* newContext)
43 :
44 SegmentString( newContext )
45 { }
46
53 //virtual void addIntersection( const geom::Coordinate * intPt, int segmentIndex) =0;
54};
55
56} // namespace geos::noding
57} // namespace geos
58
59#endif // GEOS_NODING_NODABLESEGMENTSTRING_H
Coordinate is the lightweight class used to store coordinates.
Definition Coordinate.h:60
SegmentString(const void *newContext)
Construct a SegmentString.
Definition SegmentString.h:58
Contains the Geometry interface hierarchy and supporting classes.
Definition IndexedNestedRingTester.h:26
Classes to compute nodings for arrangements of line segments and line segment sequences.
Definition PreparedLineString.h:27
Basic namespace for all GEOS functionalities.
Definition IndexedNestedRingTester.h:25