cmake/Tests/MFC/mfc1/mfc1Doc.h

34 lines
575 B
C
Raw Normal View History

2012-02-18 12:40:36 +02:00
// mfc1Doc.h : interface of the Cmfc1Doc class
//
#pragma once
class Cmfc1Doc : public CDocument
{
protected: // create from serialization only
2016-07-09 11:21:54 +02:00
Cmfc1Doc();
DECLARE_DYNCREATE(Cmfc1Doc)
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
public:
virtual BOOL OnNewDocument();
virtual void Serialize(CArchive& ar);
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 ~Cmfc1Doc();
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
protected:
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
};