GEOS  3.9.1dev
EdgeEndBundleStar.h
Go to the documentation of this file.
1 /**********************************************************************
2  *
3  * GEOS - Geometry Engine Open Source
4  * http://geos.osgeo.org
5  *
6  * Copyright (C) 2006 Refractions Research Inc.
7  *
8  * This is free software; you can redistribute and/or modify it under
9  * the terms of the GNU Lesser General Public Licence as published
10  * by the Free Software Foundation.
11  * See the COPYING file for more information.
12  *
13  **********************************************************************
14  *
15  * Last port: operation/relate/EdgeEndBundleStar.java rev. 1.13 (JTS-1.10)
16  *
17  **********************************************************************/
18 
19 #ifndef GEOS_OP_RELATE_EDGEENDBUNDLESTAR_H
20 #define GEOS_OP_RELATE_EDGEENDBUNDLESTAR_H
21 
22 #include <geos/export.h>
23 
24 #include <geos/geomgraph/EdgeEndStar.h> // for EdgeEndBundleStar inheritance
25 
26 // Forward declarations
27 namespace geos {
28 namespace geom {
29 class IntersectionMatrix;
30 }
31 namespace geomgraph {
32 class EdgeEnd;
33 }
34 }
35 
36 
37 namespace geos {
38 namespace operation { // geos::operation
39 namespace relate { // geos::operation::relate
40 
49 public:
50 
53 
54  ~EdgeEndBundleStar() override;
55  void insert(geomgraph::EdgeEnd* e) override;
56 
60  void updateIM(geom::IntersectionMatrix& im);
61 };
62 
63 
64 } // namespace geos:operation:relate
65 } // namespace geos:operation
66 } // namespace geos
67 
68 #endif // GEOS_OP_RELATE_EDGEENDBUNDLESTAR_H
A EdgeEndStar is an ordered list of EdgeEnds around a node.
Definition: EdgeEndStar.h:65
#define GEOS_DLL
Definition: export.h:28
An ordered list of EdgeEndBundle objects around a RelateNode.
Implementation of Dimensionally Extended Nine-Intersection Model (DE-9IM) matrix. ...
Models the end of an edge incident on a node.
Definition: EdgeEnd.h:56
Basic namespace for all GEOS functionalities.
EdgeEndBundleStar()
Creates a new empty EdgeEndBundleStar.