// ShortFrame.h // // // // No context supplier is provided in this implementation // #ifndef SHORT_FRAME_H #define SHORT_FRAME_H #ifndef ZMENVIRONMENT_H #include "ZMutility/ZMenvironment.h" #endif #include "ErrorLogger/ErrorLog.h" class ELadminstrator; class ShortModule; class ShortFrame { public: ShortFrame(); ~ShortFrame(); void SetupAndRun(); private: ShortModule *step; ELdestControl IDlimits, output, out2, stats; ELadministrator *logger; ErrorLog errlog; }; #endif