//--------------------------------------------------------------------------- #ifndef cellMakerH #define cellMakerH //--------------------------------------------------------------------------- class GrCellMaker; typedef GrCellMaker * pGrCellMaker; #include "cell.h" class GrCellMaker { public: GrCellMaker() {;}; ~GrCellMaker() {;}; virtual pCell newCell(pAuditory pa, int xx,int yy)=0; }; #endif