summaryrefslogtreecommitdiffstats
path: root/Tests/MFC/mfc1/MainFrm.h
diff options
context:
space:
mode:
authorDavid Cole <david.cole@kitware.com>2011-11-15 19:38:52 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2011-11-15 19:38:52 (GMT)
commit608d05b469a446aeb85c0d3374ccf2a3f397292b (patch)
treedbabf801eb8905387ce13bfb6c537266f8be47e5 /Tests/MFC/mfc1/MainFrm.h
parent151850ed0345ed6353b2b836ffe00da0e448b50b (diff)
parentc71f7ab7db843234cab7e6b75ab2636a0d7e8d67 (diff)
downloadCMake-608d05b469a446aeb85c0d3374ccf2a3f397292b.zip
CMake-608d05b469a446aeb85c0d3374ccf2a3f397292b.tar.gz
CMake-608d05b469a446aeb85c0d3374ccf2a3f397292b.tar.bz2
Merge topic 'add-mfc-test'
c71f7ab Tests: Avoid MFC test automatically for Watcom WMake builds (#11213) a42e3f2 Tests: Fix MFC test for old vs6 dashboards (#11213) b297da6 Tests: Fix MFC test w/ Make-based generators (#11213) 54595e6 Tests: Avoid MFC test automatically for VCExpress builds (#11213) 36b0c43 Tests: Add the MFC test (#11213)
Diffstat (limited to 'Tests/MFC/mfc1/MainFrm.h')
-rw-r--r--Tests/MFC/mfc1/MainFrm.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/Tests/MFC/mfc1/MainFrm.h b/Tests/MFC/mfc1/MainFrm.h
new file mode 100644
index 0000000..1039ac5
--- /dev/null
+++ b/Tests/MFC/mfc1/MainFrm.h
@@ -0,0 +1,38 @@
+// 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()
+};