人事管理系统Doc.cpp
上传用户:z_mail1980
上传日期:2007-06-01
资源大小:647k
文件大小:1k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. // 人事管理系统Doc.cpp : implementation of the CMyDoc class
  2. //
  3. #include "stdafx.h"
  4. #include "人事管理系统.h"
  5. #include "人事管理系统Set.h"
  6. #include "人事管理系统Doc.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CMyDoc
  14. IMPLEMENT_DYNCREATE(CMyDoc, CDocument)
  15. BEGIN_MESSAGE_MAP(CMyDoc, CDocument)
  16. //{{AFX_MSG_MAP(CMyDoc)
  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. // CMyDoc construction/destruction
  23. CMyDoc::CMyDoc()
  24. {
  25. // TODO: add one-time construction code here
  26. }
  27. CMyDoc::~CMyDoc()
  28. {
  29. }
  30. BOOL CMyDoc::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. // CMyDoc diagnostics
  40. #ifdef _DEBUG
  41. void CMyDoc::AssertValid() const
  42. {
  43. CDocument::AssertValid();
  44. }
  45. void CMyDoc::Dump(CDumpContext& dc) const
  46. {
  47. CDocument::Dump(dc);
  48. }
  49. #endif //_DEBUG
  50. /////////////////////////////////////////////////////////////////////////////
  51. // CMyDoc commands