DAOVWDOC.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // DaoVwDoc.h : interface of the CDaoViewDoc class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. class CDaoTreeView;
  13. class CDaoListView;
  14. class CDaoViewDoc : public CDocument
  15. {
  16. protected: // create from serialization only
  17. CDaoViewDoc();
  18. DECLARE_DYNCREATE(CDaoViewDoc)
  19. // Attributes
  20. public:
  21. CDaoDatabase* m_pDB;
  22. CDaoTreeView* m_pTreeView;
  23. CDaoListView* m_pListView;
  24. // Operations
  25. public:
  26. void RefreshViews();
  27. // Overrides
  28. // ClassWizard generated virtual function overrides
  29. //{{AFX_VIRTUAL(CDaoViewDoc)
  30. public:
  31. virtual BOOL OnNewDocument();
  32. virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);
  33. //}}AFX_VIRTUAL
  34. // Implementation
  35. public:
  36. virtual ~CDaoViewDoc();
  37. virtual void Serialize(CArchive& ar);   // overridden for document i/o
  38. #ifdef _DEBUG
  39. virtual void AssertValid() const;
  40. virtual void Dump(CDumpContext& dc) const;
  41. #endif
  42. protected:
  43. // Generated message map functions
  44. protected:
  45. //{{AFX_MSG(CDaoViewDoc)
  46. //}}AFX_MSG
  47. DECLARE_MESSAGE_MAP()
  48. };
  49. /////////////////////////////////////////////////////////////////////////////