// 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) {}
};
