home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 27 / IOPROG_27.ISO / SOFT / MFCITER.ZIP / Source / MyProjects / MFCIteratorDemo / MainFrm.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-02-22  |  1.6 KB  |  60 lines

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. #if !defined(AFX_MAINFRM_H__1B6CEAFB_C682_11D2_85A2_00104BA829E5__INCLUDED_)
  6. #define AFX_MAINFRM_H__1B6CEAFB_C682_11D2_85A2_00104BA829E5__INCLUDED_
  7.  
  8. #if _MSC_VER > 1000
  9. #pragma once
  10. #endif // _MSC_VER > 1000
  11.  
  12. class CMainFrame : public CMDIFrameWnd
  13. {
  14.     DECLARE_DYNAMIC(CMainFrame)
  15. public:
  16.     CMainFrame();
  17.  
  18. // Attributes
  19. public:
  20.  
  21. // Operations
  22. public:
  23.  
  24. // Overrides
  25.     // ClassWizard generated virtual function overrides
  26.     //{{AFX_VIRTUAL(CMainFrame)
  27.     public:
  28.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  29.     protected:
  30.     virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  31.     //}}AFX_VIRTUAL
  32.  
  33. // Implementation
  34. public:
  35.     virtual ~CMainFrame();
  36. #ifdef _DEBUG
  37.     virtual void AssertValid() const;
  38.     virtual void Dump(CDumpContext& dc) const;
  39. #endif
  40.  
  41. protected:  // control bar embedded members
  42.     CStatusBar  m_wndStatusBar;
  43.     CToolBar    m_wndToolBar;
  44.  
  45. // Generated message map functions
  46. protected:
  47.     //{{AFX_MSG(CMainFrame)
  48.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  49.     afx_msg void OnWindowToggleMinimiseAll();
  50.     //}}AFX_MSG
  51.     DECLARE_MESSAGE_MAP()
  52. };
  53.  
  54. /////////////////////////////////////////////////////////////////////////////
  55.  
  56. //{{AFX_INSERT_LOCATION}}
  57. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  58.  
  59. #endif // !defined(AFX_MAINFRM_H__1B6CEAFB_C682_11D2_85A2_00104BA829E5__INCLUDED_)
  60.