MAINFRM.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #if !defined(AFX_MAINFRM_H__2B60A700_22FC_11D1_8FD3_000000000000__INCLUDED_)
  13. #define AFX_MAINFRM_H__2B60A700_22FC_11D1_8FD3_000000000000__INCLUDED_
  14. #if _MSC_VER >= 1000
  15. #pragma once
  16. #endif // _MSC_VER >= 1000
  17. class CMainFrame : public CFrameWnd
  18. {
  19. protected: // create from serialization only
  20. CMainFrame();
  21. DECLARE_DYNCREATE(CMainFrame)
  22. // Attributes
  23. public:
  24. // Operations
  25. public:
  26. // Overrides
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CMainFrame)
  29. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. public:
  33. virtual ~CMainFrame();
  34. #ifdef _DEBUG
  35. virtual void AssertValid() const;
  36. virtual void Dump(CDumpContext& dc) const;
  37. #endif
  38. protected:  // control bar embedded members
  39. CStatusBar  m_wndStatusBar;
  40. CToolBar    m_wndToolBar;
  41. // Generated message map functions
  42. protected:
  43. //{{AFX_MSG(CMainFrame)
  44. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  45. // NOTE - the ClassWizard will add and remove member functions here.
  46. //    DO NOT EDIT what you see in these blocks of generated code!
  47. //}}AFX_MSG
  48. DECLARE_MESSAGE_MAP()
  49. };
  50. /////////////////////////////////////////////////////////////////////////////
  51. //{{AFX_INSERT_LOCATION}}
  52. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  53. #endif // !defined(AFX_MAINFRM_H__2B60A700_22FC_11D1_8FD3_000000000000__INCLUDED_)