//--------------------------------------------------------------------------- #ifndef grCellH #define grCellH //--------------------------------------------------------------------------- class GrCell; #include "cell.h" #include "auditory.h" class GrCell :public TCell { public: GrCell(pAuditory pa,int xx,int yy); virtual void show(); protected: int x,y; }; #endif