home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PROG_C / MSVCPUZL.ZIP / MAINFRM.H < prev    next >
C/C++ Source or Header  |  1993-11-09  |  753b  |  36 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.     BOOL PreCreateWindow(CREATESTRUCT&);
  11.     
  12. // Attributes
  13. public:
  14.  
  15. // Operations
  16. public:
  17.  
  18. // Implementation
  19. public:
  20.     virtual ~CMainFrame();
  21. #ifdef _DEBUG
  22.     virtual void AssertValid() const;
  23.     virtual void Dump(CDumpContext& dc) const;
  24. #endif
  25.  
  26.  
  27.  
  28. // Generated message map functions
  29. protected:
  30.     //{{AFX_MSG(CMainFrame)
  31.     //}}AFX_MSG
  32.     DECLARE_MESSAGE_MAP()
  33. };
  34.  
  35. /////////////////////////////////////////////////////////////////////////////
  36.