#ifndef BOARDPOINT_H #define BOARDPOINT_H class BoardPoint { public: BoardPoint (const unsigned int tx, const unsigned int ty) : x(tx), y(ty) {} const unsigned int x; const unsigned int y; private: BoardPoint (const BoardPoint & p); BoardPoint &operator = (const BoardPoint & p); }; #endif