// // Point.h // // Copyright (c) 2010 LearnBoost // #ifndef __NODE_POINT_H__ #define __NODE_POINT_H__ template class Point { public: T x, y; Point(T x, T y): x(x), y(y) {} }; #endif /* __NODE_POINT_H__ */