00001 /********************************************************************** 00002 * $Id: NodableSegmentString.h 2263 2009-01-29 18:56:00Z 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/noding/SegmentString.h> 00021 00022 namespace geos { 00023 namespace geom { 00024 class Coordinate; 00025 } 00026 } 00027 00028 namespace geos { 00029 namespace noding { // geos::noding 00030 00037 class NodableSegmentString : public SegmentString 00038 { 00039 private: 00040 protected: 00041 public: 00042 NodableSegmentString( geom::CoordinateSequence *newPts, const void* newContext) 00043 : SegmentString( newPts, newContext ) 00044 { } 00045 00052 //virtual void addIntersection( const geom::Coordinate * intPt, int segmentIndex) =0; 00053 }; 00054 00055 } // namespace geos::noding 00056 } // namespace geos 00057 00058 #endif // GEOS_NODING_NODABLESEGMENTSTRING_H 00059 /********************************************************************** 00060 * $Log$ 00061 **********************************************************************/ 00062