| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- // Doc.h : interface of the CMDIDoc class
- //
- /////////////////////////////////////////////////////////////////////////////
- #ifndef DOC_H
- #define DOC_H
- class CMDIDoc : public CDocument
- {
- protected: // create from serialization only
- CMDIDoc();
- DECLARE_DYNCREATE(CMDIDoc)
- // Attributes
- public:
- // Operations
- public:
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CMDIDoc)
- public:
- virtual BOOL OnNewDocument();
- virtual void Serialize(CArchive& ar);
- //}}AFX_VIRTUAL
- // Implementation
- public:
- virtual ~CMDIDoc();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
- protected:
- // Generated message map functions
- protected:
- //{{AFX_MSG(CMDIDoc)
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- /////////////////////////////////////////////////////////////////////////////
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif //DOC_H
|