#ifndef UMPIRE_H #define UMPIRE_H // forward declaration class Grid; // Class interface class Umpire { public: Umpire(); char validate(char t,int r,int c); private: char myGrid[3][3]; }; #endif