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