00001 /********************************************************************** 00002 * $Id: EdgeEndBundleStar.h 1820 2006-09-06 16:54:23Z 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 #ifndef GEOS_OP_RELATE_EDGEENDBUNDLESTAR_H 00017 #define GEOS_OP_RELATE_EDGEENDBUNDLESTAR_H 00018 00019 #include <geos/geomgraph/EdgeEndStar.h> // for EdgeEndBundleStar inheritance 00020 00021 // Forward declarations 00022 namespace geos { 00023 namespace geom { 00024 class IntersectionMatrix; 00025 } 00026 namespace geomgraph { 00027 class EdgeEnd; 00028 } 00029 } 00030 00031 00032 namespace geos { 00033 namespace operation { // geos::operation 00034 namespace relate { // geos::operation::relate 00035 00043 class EdgeEndBundleStar: public geomgraph::EdgeEndStar { 00044 public: 00045 00046 EdgeEndBundleStar() {} 00047 00048 virtual ~EdgeEndBundleStar(); 00049 void insert(geomgraph::EdgeEnd *e); 00050 void updateIM(geom::IntersectionMatrix *im); 00051 }; 00052 00053 00054 } // namespace geos:operation:relate 00055 } // namespace geos:operation 00056 } // namespace geos 00057 00058 #endif // GEOS_OP_RELATE_EDGEENDBUNDLESTAR_H 00059 00060 /********************************************************************** 00061 * $Log$ 00062 * Revision 1.1 2006/03/21 13:11:29 strk 00063 * opRelate.h header split 00064 * 00065 **********************************************************************/ 00066