cmake/Tests/MFC/mfc1/ChildFrm.h

31 lines
516 B
C
Raw Normal View History

2012-02-18 12:40:36 +02:00
// ChildFrm.h : interface of the CChildFrame class
//
#pragma once
class CChildFrame : public CMDIChildWnd
{
2016-07-09 11:21:54 +02:00
DECLARE_DYNCREATE(CChildFrame)
2012-02-18 12:40:36 +02:00
public:
2016-07-09 11:21:54 +02:00
CChildFrame();
2012-02-18 12:40:36 +02:00
2016-07-09 11:21:54 +02:00
// Attributes
2012-02-18 12:40:36 +02:00
public:
2016-07-09 11:21:54 +02:00
// Operations
2012-02-18 12:40:36 +02:00
public:
2016-07-09 11:21:54 +02:00
// Overrides
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
2012-02-18 12:40:36 +02:00
2016-07-09 11:21:54 +02:00
// Implementation
2012-02-18 12:40:36 +02:00
public:
2016-07-09 11:21:54 +02:00
virtual ~CChildFrame();
2012-02-18 12:40:36 +02:00
#ifdef _DEBUG
2016-07-09 11:21:54 +02:00
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
2012-02-18 12:40:36 +02:00
#endif
2016-07-09 11:21:54 +02:00
// Generated message map functions
2012-02-18 12:40:36 +02:00
protected:
2016-07-09 11:21:54 +02:00
DECLARE_MESSAGE_MAP()
2012-02-18 12:40:36 +02:00
};