home *** CD-ROM | disk | FTP | other *** search
/ Master Visual C++ 1.5 / MASTERVC15.ISO / vcprog / original / appendix / multi / mainfrm.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-11  |  1.0 KB  |  45 lines

  1. // mainfrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CMainFrame : public CFrameWnd
  6. {
  7. protected: // create from serialization only
  8.     CMainFrame();
  9.     DECLARE_DYNCREATE(CMainFrame)
  10.  
  11.     //////////////////////
  12.     // MY CODE STARTS HERE
  13.     //////////////////////
  14.  
  15.     BOOL PreCreateWindow(CREATESTRUCT& cs);
  16.  
  17.     ////////////////////
  18.     // MY CODE ENDS HERE
  19.     ////////////////////
  20.  
  21. // Attributes
  22. public:
  23.  
  24. // Operations
  25. public:
  26.  
  27. // Implementation
  28. public:
  29.     virtual ~CMainFrame();
  30. #ifdef _DEBUG
  31.     virtual void AssertValid() const;
  32.     virtual void Dump(CDumpContext& dc) const;
  33. #endif
  34.  
  35. // Generated message map functions
  36. protected:
  37.     //{{AFX_MSG(CMainFrame)
  38.         // NOTE - the ClassWizard will add and remove member functions here.
  39.         //    DO NOT EDIT what you see in these blocks of generated code!
  40.     //}}AFX_MSG
  41.     DECLARE_MESSAGE_MAP()
  42. };
  43.  
  44. /////////////////////////////////////////////////////////////////////////////
  45.