GEOS
3.6.2
|
00001 /********************************************************************** 00002 * 00003 * GEOS - Geometry Engine Open Source 00004 * http://geos.osgeo.org 00005 * 00006 * Copyright (C) 2006 Refractions Research Inc. 00007 * 00008 * This is free software; you can redistribute and/or modify it under 00009 * the terms of the GNU Lesser General Public Licence as published 00010 * by the Free Software Foundation. 00011 * See the COPYING file for more information. 00012 * 00013 * 00014 **********************************************************************/ 00015 00016 #ifndef GEOS_NODING_NODABLESEGMENTSTRING_H 00017 #define GEOS_NODING_NODABLESEGMENTSTRING_H 00018 00019 #include <geos/export.h> 00020 #include <geos/noding/SegmentString.h> // for inheritance 00021 00022 namespace geos { 00023 namespace geom { 00024 class Coordinate; 00025 } 00026 } 00027 00028 namespace geos { 00029 namespace noding { // geos::noding 00030 00037 class GEOS_DLL NodableSegmentString : public SegmentString 00038 { 00039 private: 00040 protected: 00041 public: 00042 NodableSegmentString(const void* newContext) 00043 : 00044 SegmentString( newContext ) 00045 { } 00046 00053 //virtual void addIntersection( const geom::Coordinate * intPt, int segmentIndex) =0; 00054 }; 00055 00056 } // namespace geos::noding 00057 } // namespace geos 00058 00059 #endif // GEOS_NODING_NODABLESEGMENTSTRING_H