00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef GEOS_OP_RELATE_RELATENODEFACTORY_H
00020 #define GEOS_OP_RELATE_RELATENODEFACTORY_H
00021
00022 #include <geos/export.h>
00023
00024 #include <geos/geomgraph/NodeFactory.h>
00025
00026
00027 namespace geos {
00028 namespace geom {
00029 class Coordinate;
00030 }
00031 namespace geomgraph {
00032 class Node;
00033 }
00034 }
00035
00036
00037 namespace geos {
00038 namespace operation {
00039 namespace relate {
00040
00044 class GEOS_DLL RelateNodeFactory: public geomgraph::NodeFactory {
00045 public:
00046 geomgraph::Node* createNode(const geom::Coordinate &coord) const;
00047 static const geomgraph::NodeFactory &instance();
00048 private:
00049 RelateNodeFactory() {}
00050 };
00051
00052
00053 }
00054 }
00055 }
00056
00057 #endif // GEOS_OP_RELATE_RELATENODEFACTORY_H