// Copyright (c) 2010 LearnBoost #pragma once template class Point { public: T x, y; Point(T x, T y): x(x), y(y) {} };