ImageDBDoc.h
上传用户:bst807
上传日期:2022-07-10
资源大小:74k
文件大小:2k
源码类别:

数据库编程

开发平台:

Visual C++

  1. // ImageDBDoc.h : interface of the CImageDBDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #include "ImageDB.h"
  5. #include "StdAfx.h"
  6. #if !defined(AFX_IMAGEDBDOC_H__8BEC890A_DB45_4F08_8072_9DF1C7798435__INCLUDED_)
  7. #define AFX_IMAGEDBDOC_H__8BEC890A_DB45_4F08_8072_9DF1C7798435__INCLUDED_
  8. #if _MSC_VER > 1000
  9. #pragma once
  10. #endif // _MSC_VER > 1000
  11. class CImageDBDoc : public CDocument
  12. {
  13. protected: // create from serialization only
  14. CImageDBDoc();
  15. DECLARE_DYNCREATE(CImageDBDoc)
  16. // Attributes
  17. public:
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CImageDBDoc)
  23. public:
  24. virtual BOOL OnNewDocument();
  25. virtual void Serialize(CArchive& ar);
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. public:
  29. _RecordsetPtr m_pRecordset;
  30. _ConnectionPtr m_pConnection;
  31. virtual ~CImageDBDoc();
  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(CImageDBDoc)
  40. // NOTE - the ClassWizard will add and remove member functions here.
  41. //    DO NOT EDIT what you see in these blocks of generated code !
  42. //}}AFX_MSG
  43. DECLARE_MESSAGE_MAP()
  44. };
  45. /////////////////////////////////////////////////////////////////////////////
  46. //{{AFX_INSERT_LOCATION}}
  47. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  48. #endif // !defined(AFX_IMAGEDBDOC_H__8BEC890A_DB45_4F08_8072_9DF1C7798435__INCLUDED_)