#ifndef CELL_H #define CELL_H class Cell { public: Cell(int x, int y); int x(); int y(); private: int m_x, m_y; }; #endif