get rid of libboost dependency
This commit is contained in:
parent
4674f0f116
commit
d387314715
18 changed files with 282 additions and 104 deletions
|
|
@ -11,6 +11,7 @@ namespace geo {
|
|||
template <typename T>
|
||||
class Point {
|
||||
public:
|
||||
Point() : _x(0), _y(0) {}
|
||||
Point(T x, T y) : _x(x), _y(y) {}
|
||||
T getX() const { return _x; }
|
||||
T getY() const { return _y; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue