MainFrm.h
上传用户:shlanyl88
上传日期:2013-03-14
资源大小:147k
文件大小:1k
源码类别:

3D图形编程

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. #pragma once
  4. #include "ChildView.h"
  5. class CMainFrame : public CFrameWnd
  6. {
  7. public:
  8. CMainFrame();
  9. protected: 
  10. DECLARE_DYNAMIC(CMainFrame)
  11. // Attributes
  12. public:
  13. // Operations
  14. public:
  15. // Overrides
  16. public:
  17. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  18. virtual BOOL OnCmdMsg(UINT nID, int nCode, void* pExtra, AFX_CMDHANDLERINFO* pHandlerInfo);
  19. // Implementation
  20. public:
  21. virtual ~CMainFrame();
  22. #ifdef _DEBUG
  23. virtual void AssertValid() const;
  24. virtual void Dump(CDumpContext& dc) const;
  25. #endif
  26. CChildView    m_wndView;
  27. // Generated message map functions
  28. protected:
  29. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  30. afx_msg void OnSetFocus(CWnd *pOldWnd);
  31. DECLARE_MESSAGE_MAP()
  32. };