Doc.h 995 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. // Doc.h : interface of the CMDIDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #ifndef DOC_H
  5. #define DOC_H
  6. class CMDIDoc : public CDocument
  7. {
  8. protected: // create from serialization only
  9. CMDIDoc();
  10. DECLARE_DYNCREATE(CMDIDoc)
  11. // Attributes
  12. public:
  13. // Operations
  14. public:
  15. // Overrides
  16. // ClassWizard generated virtual function overrides
  17. //{{AFX_VIRTUAL(CMDIDoc)
  18. public:
  19. virtual BOOL OnNewDocument();
  20. virtual void Serialize(CArchive& ar);
  21. //}}AFX_VIRTUAL
  22. // Implementation
  23. public:
  24. virtual ~CMDIDoc();
  25. #ifdef _DEBUG
  26. virtual void AssertValid() const;
  27. virtual void Dump(CDumpContext& dc) const;
  28. #endif
  29. protected:
  30. // Generated message map functions
  31. protected:
  32. //{{AFX_MSG(CMDIDoc)
  33. //}}AFX_MSG
  34. DECLARE_MESSAGE_MAP()
  35. };
  36. /////////////////////////////////////////////////////////////////////////////
  37. //{{AFX_INSERT_LOCATION}}
  38. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  39. #endif //DOC_H