// ShortFrame5.h // // // Tests priority of setting limits and tests wipe() // // #ifndef SHORT_FRAME5_H #define SHORT_FRAME5_H #ifndef ZMENVIRONMENT_H #include "ZMutility/ZMenvironment.h" #endif #include "ErrorLogger/ErrorLog.h" class ELadminstrator; class ShortModule; class ShortFrame5 { public: ShortFrame5(); ~ShortFrame5(); void SetupAndRun(); private: ShortModule *step; ELdestControl logfile, output, file2, stats; ELadministrator *logger; ErrorLog errlog; }; void Pause(); #endif