//---------------------------------------------------------------------------- // Project Bug // // Copyright © 1996. All Rights Reserved. // // SUBSYSTEM: Bug Application // FILE: bgabtdlg.h // AUTHOR: // // OVERVIEW // ~~~~~~~~ // Class definition for TBugAboutDlg (TDialog). // //---------------------------------------------------------------------------- #if !defined(bgabtdlg_h) // Sentry, use file only if it's not already included. #define bgabtdlg_h #include #include "bugapp.rh" // Definition of all resources. //{{TDialog = TBugAboutDlg}} class TBugAboutDlg : public TDialog { public: TBugAboutDlg(TWindow* parent, TResId resId = IDD_ABOUT, TModule* module = 0); virtual ~TBugAboutDlg(); //{{TBugAboutDlgVIRTUAL_BEGIN}} public: void SetupWindow(); //{{TBugAboutDlgVIRTUAL_END}} }; //{{TBugAboutDlg}} // Reading the VERSIONINFO resource. // class TProjectRCVersion { public: TProjectRCVersion(TModule* module); virtual ~TProjectRCVersion(); bool GetProductName(LPSTR& prodName); bool GetProductVersion(LPSTR& prodVersion); bool GetCopyright(LPSTR& copyright); bool GetDebug(LPSTR& debug); protected: uint8 far* TransBlock; void far* FVData; private: // Don't allow this object to be copied. // TProjectRCVersion(const TProjectRCVersion&); TProjectRCVersion& operator = (const TProjectRCVersion&); }; #endif // bgabtdlg_h sentry.