//--------------------------------------------------------------------------- #ifndef grAuditoryH #define grAuditoryH //--------------------------------------------------------------------------- class GrAuditory; #include "biasAuditory.h" #include "globals.h" #include "Unit1.h" #include "cellMaker.h" #include "topology.h" class GrAuditory:public BiasAuditory { public: TForm1 * Owner; GrAuditory(pBias pb, TForm1* owner, pGrCellMaker pMaker, pTopology _topology); ~GrAuditory() { if (topology) { delete topology; topology=0; }; }; pCell cell[NCELL]; pTopology topology; }; #endif