UNPKG

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