diff options
Diffstat (limited to 'Tests/MFC/mfc1/ChildFrm.h')
-rw-r--r-- | Tests/MFC/mfc1/ChildFrm.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/Tests/MFC/mfc1/ChildFrm.h b/Tests/MFC/mfc1/ChildFrm.h new file mode 100644 index 0000000..eedf4d1 --- /dev/null +++ b/Tests/MFC/mfc1/ChildFrm.h @@ -0,0 +1,30 @@ +// ChildFrm.h : interface of the CChildFrame class +// + +#pragma once + +class CChildFrame : public CMDIChildWnd +{ + DECLARE_DYNCREATE(CChildFrame) +public: + CChildFrame(); + + // Attributes +public: + // Operations +public: + // Overrides + virtual BOOL PreCreateWindow(CREATESTRUCT& cs); + + // Implementation +public: + virtual ~CChildFrame(); +#ifdef _DEBUG + virtual void AssertValid() const; + virtual void Dump(CDumpContext& dc) const; +#endif + + // Generated message map functions +protected: + DECLARE_MESSAGE_MAP() +}; |