// Forward declaration class Grid; // Class interface class Player { public: Player(Grid *, char t); void makeAMove(); private: Grid * myGrid; char myToken; };