exDoc.h
上传用户:weisheen
上传日期:2022-07-09
资源大小:19390k
文件大小:1k
源码类别:

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // exDoc.h : interface of the CExDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_EXDOC_H__89315C0C_C6D0_4301_AB99_883EDD5ED385__INCLUDED_)
  5. #define AFX_EXDOC_H__89315C0C_C6D0_4301_AB99_883EDD5ED385__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include <afxtempl.h>
  10. #include "../BooksDAL/BooksDAL.h"
  11. #include "./BookEntity.h"
  12. class CExDoc : public CDocument
  13. {
  14. protected: // create from serialization only
  15. CExDoc();
  16. DECLARE_DYNCREATE(CExDoc)
  17. // Attributes
  18. public:
  19. CTypedPtrList<CObList,BookEntity*> allBooks;
  20. // Operations
  21. public:
  22. // Overrides
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CExDoc)
  25. public:
  26. virtual BOOL OnNewDocument();
  27. virtual void Serialize(CArchive& ar);
  28. //}}AFX_VIRTUAL
  29. // Implementation
  30. public:
  31. virtual ~CExDoc();
  32. #ifdef _DEBUG
  33. virtual void AssertValid() const;
  34. virtual void Dump(CDumpContext& dc) const;
  35. #endif
  36. protected:
  37. // Generated message map functions
  38. protected:
  39. //{{AFX_MSG(CExDoc)
  40. afx_msg void OnButton32771();
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. };
  44. /////////////////////////////////////////////////////////////////////////////
  45. //{{AFX_INSERT_LOCATION}}
  46. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  47. #endif // !defined(AFX_EXDOC_H__89315C0C_C6D0_4301_AB99_883EDD5ED385__INCLUDED_)