15#ifndef GEOS_IDX_BINTREE_NODE_H
16#define GEOS_IDX_BINTREE_NODE_H
18#include <geos/export.h>
19#include <geos/index/bintree/NodeBase.h>
35class GEOS_DLL Node:
public NodeBase {
39 static Node* createNode(
Interval *itemInterval);
41 static Node* createExpanded(Node *node,
Interval *addInterval);
43 Node(
Interval *newInterval,
int newLevel);
49 Node* getNode(
Interval *searchInterval);
51 NodeBase* find(
Interval *searchInterval);
53 void insert(Node *node);
63 Node* getSubnode(
int index);
65 Node* createSubnode(
int index);
69 bool isSearchMatch(
Interval *itemInterval);
Represents an (1-dimensional) closed interval on the Real number line.
Definition bintree/Interval.h:25
Contains classes that implement a Binary Interval Tree index.
Definition MCPointInRing.h:37
Provides classes for various kinds of spatial indexes.
Definition IndexedNestedRingTester.h:31
Basic namespace for all GEOS functionalities.
Definition IndexedNestedRingTester.h:25