00001 /********************************************************************** 00002 * $Id: NodableSegmentString.h 2320 2009-04-08 09:42:55Z strk $ 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> // 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 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 00060 /********************************************************************** 00061 * $Log$ 00062 **********************************************************************/ 00063