00001 /********************************************************************** 00002 * $Id: EdgeEndBundleStar.h 2557 2009-06-08 09:30: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 * Last port: operation/relate/EdgeEndBundleStar.java rev. 1.13 (JTS-1.10) 00017 * 00018 **********************************************************************/ 00019 00020 #ifndef GEOS_OP_RELATE_EDGEENDBUNDLESTAR_H 00021 #define GEOS_OP_RELATE_EDGEENDBUNDLESTAR_H 00022 00023 #include <geos/export.h> 00024 00025 #include <geos/geomgraph/EdgeEndStar.h> // for EdgeEndBundleStar inheritance 00026 00027 // Forward declarations 00028 namespace geos { 00029 namespace geom { 00030 class IntersectionMatrix; 00031 } 00032 namespace geomgraph { 00033 class EdgeEnd; 00034 } 00035 } 00036 00037 00038 namespace geos { 00039 namespace operation { // geos::operation 00040 namespace relate { // geos::operation::relate 00041 00049 class GEOS_DLL EdgeEndBundleStar: public geomgraph::EdgeEndStar { 00050 public: 00051 00053 EdgeEndBundleStar() {} 00054 00055 virtual ~EdgeEndBundleStar(); 00056 void insert(geomgraph::EdgeEnd *e); 00057 void updateIM(geom::IntersectionMatrix *im); 00058 }; 00059 00060 00061 } // namespace geos:operation:relate 00062 } // namespace geos:operation 00063 } // namespace geos 00064 00065 #endif // GEOS_OP_RELATE_EDGEENDBUNDLESTAR_H 00066 00067 /********************************************************************** 00068 * $Log$ 00069 * Revision 1.1 2006/03/21 13:11:29 strk 00070 * opRelate.h header split 00071 * 00072 **********************************************************************/ 00073