16 #ifndef GEOS_IDX_BINTREE_NODE_H
17 #define GEOS_IDX_BINTREE_NODE_H
19 #include <geos/export.h>
20 #include <geos/index/bintree/NodeBase.h>
54 void insert(
Node *node);
64 Node* getSubnode(
int index);
66 Node* createSubnode(
int index);
70 bool isSearchMatch(
Interval *itemInterval);
77 #endif // GEOS_IDX_BINTREE_NODE_H
Represents an (1-dimensional) closed interval on the Real number line.
Definition: bintree/Interval.h:26
The base class for nodes in a Bintree.
Definition: bintree/NodeBase.h:37
A node of a Bintree.
Definition: index/bintree/Node.h:36