home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PROG_C / FILE_LK.ZIP / MAINFRM.H < prev    next >
C/C++ Source or Header  |  1993-12-18  |  833b  |  39 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. // Attributes
  12. public:
  13.  
  14. // Operations
  15. public:
  16.  
  17. // Implementation
  18. public:
  19.     virtual ~CMainFrame();
  20. #ifdef _DEBUG
  21.     virtual    void AssertValid() const;
  22.     virtual    void Dump(CDumpContext& dc) const;
  23. #endif
  24.  
  25.  
  26. public:    // control bar embedded members
  27.     CStatusBar    m_wndStatusBar;
  28.     CToolBar    m_wndToolBar;
  29.  
  30. // Generated message map functions
  31. protected:
  32.     //{{AFX_MSG(CMainFrame)
  33.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  34.     //}}AFX_MSG
  35.     DECLARE_MESSAGE_MAP()
  36. };
  37.  
  38. /////////////////////////////////////////////////////////////////////////////
  39.