//--------------------------------------------------------------------------- #ifndef restandCellH #define restandCellH //--------------------------------------------------------------------------- class RestandCell; #include "cell3.h" class RestandCell : public Cell3 { public: RestandCell(pAuditory pa,int xx,int yy, float IA, float CTON, float CTOG, float APTOSTD, float CNTSTDNTSTND, float EXHAUST, int RESTAND, int _contStEx ); virtual void recalculate(); virtual void initialize(); protected: float exhaust; int swRounds,switched,restand,contStEx; }; #endif