#pragma once namespace Javelin { template class Point2 { public: T x; T y; Point2(int a, int b) : x(a) , y(b) { } }; }