// ShortFrame2.h // // // This framework has no ELdestControls so it should attach one to "cout" // automatically // #ifndef SHORT_FRAME2_H #define SHORT_FRAME2_H #ifndef ZMENVIRONMENT_H #include "ZMutility/ZMenvironment.h" #endif #include "ErrorLogger/ErrorLog.h" class ELadminstrator; class ShortModule; class ShortFrame2 { public: ShortFrame2(); ~ShortFrame2(); void SetupAndRun(); private: ShortModule *step; ELadministrator *logger; ErrorLog errlog; }; #endif