Map Matching
box.h
Go to the documentation of this file.
1 #ifndef BOX_H
2 #define BOX_H
3 
4 #include "../point.h"
5 
6 class Box {
7 public:
8  Box() {}
9  Box(const Point& low, const Point& high)
10  : m_low(low)
11  , m_high(high)
12  {
13  }
14 
15  double distanceToPoint(const Point& point);
16 
19 };
20 
21 #endif // BOX_H
Point m_high
Definition: box.h:18
Box()
Definition: box.h:8
Point m_low
Definition: box.h:17
double distanceToPoint(const Point &point)
Definition: box.cpp:4
Box(const Point &low, const Point &high)
Definition: box.h:9
Definition: box.h:6
The Point class.
Definition: point.h:20