GEOS 3.11.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#pragma once
17
18#include <geos/export.h>
19#include <geos/noding/SegmentString.h> // for inheritance
20
21namespace geos {
22namespace geom {
23class Coordinate;
24}
25}
26
27namespace geos {
28namespace noding { // geos::noding
29
36class GEOS_DLL NodableSegmentString : public SegmentString {
37private:
38protected:
39public:
40 NodableSegmentString(const void* newContext)
41 :
42 SegmentString(newContext)
43 { }
44
51 //virtual void addIntersection( const geom::Coordinate * intPt, int segmentIndex) =0;
52};
53
54} // namespace geos::noding
55} // namespace geos
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:45
Basic namespace for all GEOS functionalities.
Definition: geos.h:39