Map Matching
boxnode.h
Go to the documentation of this file.
1 #ifndef BOXNODE_H
2 #define BOXNODE_H
3 
4 #include "box.h"
5 
6 class BoxNode : public Box {
7 
8 public:
9  BoxNode() {}
10 
11  BoxNode(Point low, Point high, int mother, int daughterOne, int daughterTwo, int myptlo, int mypthi)
12  : Box(low, high)
13  , m_motherBox(mother)
14  , m_daughterBox1(daughterOne)
15  , m_daughterBox2(daughterTwo)
16  , m_indexOfLowerPoint(myptlo)
17  , m_indexOfUpperPoint(mypthi)
18  {
19  }
20 
21  // protected: // no protection, classe only used within kdtree
24 };
25 
26 #endif // BOXNODE_H
Definition: boxnode.h:6
BoxNode()
Definition: boxnode.h:9
int m_daughterBox2
Definition: boxnode.h:22
int m_indexOfLowerPoint
Definition: boxnode.h:23
BoxNode(Point low, Point high, int mother, int daughterOne, int daughterTwo, int myptlo, int mypthi)
Definition: boxnode.h:11
int m_indexOfUpperPoint
Definition: boxnode.h:23
int m_motherBox
Definition: boxnode.h:22
int m_daughterBox1
Definition: boxnode.h:22
Definition: box.h:6
The Point class.
Definition: point.h:20