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

Windows编程

开发平台:

Visual C++

  1. // DBDoc.h : interface of the CDBViewDoc class
  2. //
  3. // This is a part of the Microsoft Foundation Classes and
  4. // Templates (MFC&T).
  5. // Copyright (C) 1998 Microsoft Corporation
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to the
  9. // MFC&T Reference and related electronic documentation provided
  10. // with the library.  See these sources for detailed information
  11. // regarding the MFC&T product.
  12. //
  13. /////////////////////////////////////////////////////////////////////////////
  14. #ifndef __DBDOC_H__
  15. #define __DBDOC_H__
  16. /////////////////////////////////////////////////////////////////////////////
  17. // Forward declarations
  18. class CDBListView;
  19. class CDBTreeView;
  20. /////////////////////////////////////////////////////////////////////////////
  21. // Class CDBViewDoc
  22. class CDBViewDoc : public CDocument
  23. {
  24. protected: // create from serialization only
  25. CString m_strConnect;
  26. CDataSource m_Connect;
  27. CSession    m_Session;
  28. CDBViewDoc();
  29. DECLARE_DYNCREATE(CDBViewDoc)
  30. // Attributes
  31. public:
  32. CString GetConnect();
  33. CString GetDSN();
  34. void RefreshViews();
  35. CDBListView* m_pListView;
  36. CDBTreeView* m_pTreeView;
  37. // Operations
  38. public:
  39. // Overrides
  40. // ClassWizard generated virtual function overrides
  41. //{{AFX_VIRTUAL(CDBViewDoc)
  42. public:
  43. virtual BOOL OnNewDocument();
  44. virtual void Serialize(CArchive& ar);
  45. virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);
  46. //}}AFX_VIRTUAL
  47. // Implementation
  48. public:
  49. CDataSource* GetDataSource();
  50. virtual ~CDBViewDoc();
  51. #ifdef _DEBUG
  52. virtual void AssertValid() const;
  53. virtual void Dump(CDumpContext& dc) const;
  54. #endif
  55. protected:
  56. // Generated message map functions
  57. protected:
  58. //{{AFX_MSG(CDBViewDoc)
  59. afx_msg void OnFileOpen();
  60. //}}AFX_MSG
  61. DECLARE_MESSAGE_MAP()
  62. };
  63. /////////////////////////////////////////////////////////////////////////////
  64. #endif // __DBDOC_H__
  65. /////////////////////////////////////////////////////////////////////////////