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

SNMP编程

开发平台:

Visual C++

  1. // Dlg_input.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "MibBrowser.h"
  5. #include "Dlg_input.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CDlg_input dialog
  13. CDlg_input::CDlg_input(CWnd* pParent /*=NULL*/)
  14. : CDialog(CDlg_input::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CDlg_input)
  17. m_NodeName = _T("");
  18. m_NodeOid = _T("");
  19. m_ParentName = _T("");
  20. //}}AFX_DATA_INIT
  21. }
  22. void CDlg_input::DoDataExchange(CDataExchange* pDX)
  23. {
  24. CDialog::DoDataExchange(pDX);
  25. //{{AFX_DATA_MAP(CDlg_input)
  26. DDX_Text(pDX, IDC_NODE_NAME, m_NodeName);
  27. DDX_Text(pDX, IDC_NODE_OID, m_NodeOid);
  28. DDX_Text(pDX, IDC_EDIT1, m_ParentName);
  29. //}}AFX_DATA_MAP
  30. }
  31. BEGIN_MESSAGE_MAP(CDlg_input, CDialog)
  32. //{{AFX_MSG_MAP(CDlg_input)
  33. // NOTE: the ClassWizard will add message map macros here
  34. //}}AFX_MSG_MAP
  35. END_MESSAGE_MAP()
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CDlg_input message handlers