DateBaseDoc.cpp
上传用户:z_mail1980
上传日期:2007-06-01
资源大小:647k
文件大小:2k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. // DateBaseDoc.cpp : implementation of the CDateBaseDoc class
  2. //
  3. #include "stdafx.h"
  4. #include "DateBase.h"
  5. #include "DateBaseSet.h"
  6. #include "DateBaseDoc.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CDateBaseDoc
  14. IMPLEMENT_DYNCREATE(CDateBaseDoc, CDocument)
  15. BEGIN_MESSAGE_MAP(CDateBaseDoc, CDocument)
  16. //{{AFX_MSG_MAP(CDateBaseDoc)
  17. // NOTE - the ClassWizard will add and remove mapping macros here.
  18. //    DO NOT EDIT what you see in these blocks of generated code!
  19. //}}AFX_MSG_MAP
  20. END_MESSAGE_MAP()
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CDateBaseDoc construction/destruction
  23. CDateBaseDoc::CDateBaseDoc()
  24. {
  25. // TODO: add one-time construction code here
  26. }
  27. CDateBaseDoc::~CDateBaseDoc()
  28. {
  29. }
  30. BOOL CDateBaseDoc::OnNewDocument()
  31. {
  32. if (!CDocument::OnNewDocument())
  33. return FALSE;
  34. // TODO: add reinitialization code here
  35. // (SDI documents will reuse this document)
  36. return TRUE;
  37. }
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CDateBaseDoc serialization
  40. void CDateBaseDoc::Serialize(CArchive& ar)
  41. {
  42. if (ar.IsStoring())
  43. {
  44. // TODO: add storing code here
  45. }
  46. else
  47. {
  48. // TODO: add loading code here
  49. }
  50. }
  51. /////////////////////////////////////////////////////////////////////////////
  52. // CDateBaseDoc diagnostics
  53. #ifdef _DEBUG
  54. void CDateBaseDoc::AssertValid() const
  55. {
  56. CDocument::AssertValid();
  57. }
  58. void CDateBaseDoc::Dump(CDumpContext& dc) const
  59. {
  60. CDocument::Dump(dc);
  61. }
  62. #endif //_DEBUG
  63. /////////////////////////////////////////////////////////////////////////////
  64. // CDateBaseDoc commands