NetMapDoc.cpp
上传用户:hbytqc8
上传日期:2014-07-31
资源大小:527k
文件大小:2k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. // NetMapDoc.cpp : implementation of the CNetMapDoc class
  2. //
  3. #include "stdafx.h"
  4. #include "NetMap.h"
  5. #include "Input.h"
  6. #include "NetMapDoc.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CNetMapDoc
  14. IMPLEMENT_DYNCREATE(CNetMapDoc, CDocument)
  15. BEGIN_MESSAGE_MAP(CNetMapDoc, CDocument)
  16. //{{AFX_MSG_MAP(CNetMapDoc)
  17. ON_COMMAND(ID_CONFIG, OnConfig)
  18. //}}AFX_MSG_MAP
  19. END_MESSAGE_MAP()
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CNetMapDoc construction/destruction
  22. CNetMapDoc::CNetMapDoc()
  23. {
  24. // TODO: add one-time construction code here
  25. }
  26. CNetMapDoc::~CNetMapDoc()
  27. {
  28. }
  29. BOOL CNetMapDoc::OnNewDocument()
  30. {
  31. if (!CDocument::OnNewDocument())
  32. return FALSE;
  33. // TODO: add reinitialization code here
  34. // (SDI documents will reuse this document)
  35. return TRUE;
  36. }
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CNetMapDoc serialization
  39. void CNetMapDoc::Serialize(CArchive& ar)
  40. {
  41. if (ar.IsStoring())
  42. {
  43. // TODO: add storing code here
  44. }
  45. else
  46. {
  47. // TODO: add loading code here
  48. }
  49. }
  50. /////////////////////////////////////////////////////////////////////////////
  51. // CNetMapDoc diagnostics
  52. #ifdef _DEBUG
  53. void CNetMapDoc::AssertValid() const
  54. {
  55. CDocument::AssertValid();
  56. }
  57. void CNetMapDoc::Dump(CDumpContext& dc) const
  58. {
  59. CDocument::Dump(dc);
  60. }
  61. #endif //_DEBUG
  62. /////////////////////////////////////////////////////////////////////////////
  63. // CNetMapDoc commands
  64. void CNetMapDoc::OnConfig() 
  65. {
  66. CInput input;
  67. if(input.DoModal()==IDOK)
  68. {
  69. // CString str;
  70. ip=input.m_ip;
  71. community=input.m_community;
  72. }
  73. }