diff options
author | David Cole <david.cole@kitware.com> | 2011-11-15 19:38:52 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2011-11-15 19:38:52 (GMT) |
commit | 608d05b469a446aeb85c0d3374ccf2a3f397292b (patch) | |
tree | dbabf801eb8905387ce13bfb6c537266f8be47e5 /Tests/MFC/mfc1/mfc1Doc.h | |
parent | 151850ed0345ed6353b2b836ffe00da0e448b50b (diff) | |
parent | c71f7ab7db843234cab7e6b75ab2636a0d7e8d67 (diff) | |
download | CMake-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/mfc1Doc.h')
-rw-r--r-- | Tests/MFC/mfc1/mfc1Doc.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/Tests/MFC/mfc1/mfc1Doc.h b/Tests/MFC/mfc1/mfc1Doc.h new file mode 100644 index 0000000..92d8e35 --- /dev/null +++ b/Tests/MFC/mfc1/mfc1Doc.h @@ -0,0 +1,37 @@ +// mfc1Doc.h : interface of the Cmfc1Doc class +// + + +#pragma once + +class Cmfc1Doc : public CDocument +{ +protected: // create from serialization only + Cmfc1Doc(); + DECLARE_DYNCREATE(Cmfc1Doc) + +// Attributes +public: + +// Operations +public: + +// Overrides + public: + virtual BOOL OnNewDocument(); + virtual void Serialize(CArchive& ar); + +// Implementation +public: + virtual ~Cmfc1Doc(); +#ifdef _DEBUG + virtual void AssertValid() const; + virtual void Dump(CDumpContext& dc) const; +#endif + +protected: + +// Generated message map functions +protected: + DECLARE_MESSAGE_MAP() +}; |