//--------------------------------------------------------------------------- #ifndef dynamicDynamicCell3H #define dynamicDynamicCell3H //--------------------------------------------------------------------------- class DynamicCell3; #include "grCell.h" class DynamicCell3 : public GrCell { public: DynamicCell3(pAuditory pa,int xx,int yy, float _IAM, float _IASD, float _CTONM, float _CTONSD, float _CTOGM, float _CTOGSD, float _APTOSTDM, float _APTOSTDSD, float _CNTSTDNTSTNDM, float _CNTSTDNTSTNDSD); virtual int isStanding(); virtual void recalculate(); virtual void initialize(); protected: float IAM; float IASD; float CTONM; float CTONSD; float CTOGM; float CTOGSD; float APTOSTDM; float APTOSTDSD; float CNTSTDNTSTNDM; float CNTSTDNTSTNDSD; }; #endif