summaryrefslogtreecommitdiffstats
path: root/Tests/MFC/mfc1/mfc1Doc.h
blob: fb43cba08606e2ca60adb9f5a44b24aa876e792d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// 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()
};