Point.h 161 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 // Copyright (c) 2010 LearnBoost <tj@learnboost.com> #pragma once template <class T> class Point { public: T x, y; Point(T x, T y): x(x), y(y) {} };