//---------------------------------------------------------------------------- // Project Saie // Jyvaskylan Yliopisto // Copyright © 1996. All Rights Reserved. // // SUBSYSTEM: Saie Application // FILE: saieapp.h // AUTHOR: Vesa Lappalainen // // OVERVIEW // ~~~~~~~~ // Class definition for TSaieApp (TApplication). // //---------------------------------------------------------------------------- #if !defined(saieapp_h) // Sentry, use file only if it's not already included. #define saieapp_h #include #include "saieapp.rh" // Definition of all resources. //{{TDecoratedFrame = TSDIDecFrame}} class TSDIDecFrame : public TDecoratedFrame { public: TSDIDecFrame(TWindow* parent, const char far* title, TWindow* clientWnd, bool trackMenuSelection = false, TModule* module = 0); ~TSDIDecFrame(); //{{TSDIDecFrameVIRTUAL_BEGIN}} public: //{{TSDIDecFrameVIRTUAL_END}} }; //{{TSDIDecFrame}} //{{TApplication = TSaieApp}} class TSaieApp : public TApplication { private: public: TSaieApp(); virtual ~TSaieApp(); //{{TSaieAppVIRTUAL_BEGIN}} public: virtual void InitMainWindow(); //{{TSaieAppVIRTUAL_END}} //{{TSaieAppRSP_TBL_BEGIN}} protected: void CmHelpAbout(); //{{TSaieAppRSP_TBL_END}} DECLARE_RESPONSE_TABLE(TSaieApp); }; //{{TSaieApp}} #endif // saieapp_h sentry.