//occupantType.h #include #include #include #include class occupantType { private: int kindOf; public: int getkindOf(); occupantType(); occupantType(int a); bool operator == (const occupantType &fake); bool operator != (const occupantType &fake); bool isEmpty(); void display(); }; static occupantType EMPTY = occupantType(0); static occupantType VERT = occupantType(1); static occupantType HORZ = occupantType(2);