OLEDBReportMFCDoc.cpp
上传用户:benben_wyd
上传日期:2010-02-26
资源大小:1229k
文件大小:2k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // OLEDBReportMFCDoc.cpp : implementation of the COLEDBReportMFCDoc class
  2. //
  3. #include "stdafx.h"
  4. #include "OLEDBReportMFC.h"
  5. #include "OLEDBReportMFCDoc.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // COLEDBReportMFCDoc
  13. IMPLEMENT_DYNCREATE(COLEDBReportMFCDoc, CDocument)
  14. BEGIN_MESSAGE_MAP(COLEDBReportMFCDoc, CDocument)
  15. //{{AFX_MSG_MAP(COLEDBReportMFCDoc)
  16. //}}AFX_MSG_MAP
  17. END_MESSAGE_MAP()
  18. /////////////////////////////////////////////////////////////////////////////
  19. // COLEDBReportMFCDoc construction/destruction
  20. COLEDBReportMFCDoc::COLEDBReportMFCDoc()
  21. {
  22. }
  23. COLEDBReportMFCDoc::~COLEDBReportMFCDoc()
  24. {
  25. }
  26. BOOL COLEDBReportMFCDoc::OnNewDocument()
  27. {
  28. if (!CDocument::OnNewDocument())
  29. return FALSE;
  30. return TRUE;
  31. }
  32. /////////////////////////////////////////////////////////////////////////////
  33. // COLEDBReportMFCDoc serialization
  34. void COLEDBReportMFCDoc::Serialize(CArchive& ar)
  35. {
  36. if (ar.IsStoring())
  37. {
  38. }
  39. else
  40. {
  41. }
  42. }
  43. /////////////////////////////////////////////////////////////////////////////
  44. // COLEDBReportMFCDoc diagnostics
  45. #ifdef _DEBUG
  46. void COLEDBReportMFCDoc::AssertValid() const
  47. {
  48. CDocument::AssertValid();
  49. }
  50. void COLEDBReportMFCDoc::Dump(CDumpContext& dc) const
  51. {
  52. CDocument::Dump(dc);
  53. }
  54. #endif //_DEBUG
  55. /////////////////////////////////////////////////////////////////////////////
  56. // COLEDBReportMFCDoc commands