

//
// Point.h
//
// Copyright (c) 2010 LearnBoost <tj@learnboost.com>
//

#ifndef __NODE_POINT_H__
#define __NODE_POINT_H__

template <class T>
class Point {
  public:
    T x, y;
    Point(T x, T y): x(x), y(y) {}
};

#endif /* __NODE_POINT_H__ */
