https://github.com/Kitware/CMake
Raw File
Tip revision: 9c507c13a0cffb163a1d56f34c020b5474a3e100 authored by Brad King on 02 November 2016, 15:46:41 UTC
CMake 3.6.3
Tip revision: 9c507c1
MainFrm.h
// MainFrm.h : interface of the CMainFrame class
//

#pragma once
class CMainFrame : public CMDIFrameWnd
{
  DECLARE_DYNAMIC(CMainFrame)
public:
  CMainFrame();

  // Attributes
public:
  // Operations
public:
  // Overrides
public:
  virtual BOOL PreCreateWindow(CREATESTRUCT& cs);

  // Implementation
public:
  virtual ~CMainFrame();
#ifdef _DEBUG
  virtual void AssertValid() const;
  virtual void Dump(CDumpContext& dc) const;
#endif

protected: // control bar embedded members
  CStatusBar m_wndStatusBar;
  CToolBar m_wndToolBar;

  // Generated message map functions
protected:
  afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  DECLARE_MESSAGE_MAP()
};
back to top