Doc.h
上传用户:szcysw
上传日期:2013-03-11
资源大小:6752k
文件大小:1k
源码类别:

界面编程

开发平台:

Visual C++

  1. #if !defined(AFX_DOC_H__EAF4573A_E934_4CDA_8180_8B4ABCEF55E3__INCLUDED_)
  2. #define AFX_DOC_H__EAF4573A_E934_4CDA_8180_8B4ABCEF55E3__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // Doc.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CMyDoc document
  10. class CMyDoc : public CDocument
  11. {
  12. protected:
  13. DECLARE_DYNCREATE(CMyDoc)
  14. // Attributes
  15. public:
  16. CMyDoc();           // protected constructor used by dynamic creation
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CMyDoc)
  22. public:
  23. virtual void Serialize(CArchive& ar);   // overridden for document i/o
  24. protected:
  25. virtual BOOL OnNewDocument();
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. public:
  29. virtual ~CMyDoc();
  30. #ifdef _DEBUG
  31. virtual void AssertValid() const;
  32. virtual void Dump(CDumpContext& dc) const;
  33. #endif
  34. // Generated message map functions
  35. protected:
  36. //{{AFX_MSG(CMyDoc)
  37. // NOTE - the ClassWizard will add and remove member functions here.
  38. //}}AFX_MSG
  39. DECLARE_MESSAGE_MAP()
  40. };
  41. //{{AFX_INSERT_LOCATION}}
  42. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  43. #endif // !defined(AFX_DOC_H__EAF4573A_E934_4CDA_8180_8B4ABCEF55E3__INCLUDED_)