NotifySend.h
上传用户:czjinwang
上传日期:2007-01-12
资源大小:2484k
文件大小:2k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. /*============================================================================
  2.   Copyright (c) 1996
  3.   Hewlett-Packard Company
  4.   ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
  5.   Permission to use, copy, modify, distribute and/or sell this software 
  6.   and/or its documentation is hereby granted without fee. User agrees 
  7.   to display the above copyright notice and this license notice in all 
  8.   copies of the software and any documentation of the software. User 
  9.   agrees to assume all liability for the use of the software; Hewlett-Packard 
  10.   makes no representations about the suitability of this software for any 
  11.   purpose. It is provided "AS-IS without warranty of any kind,either express 
  12.   or implied. User hereby grants a royalty-free license to any and all 
  13.   derivatives based upon this software code base. 
  14. =============================================================================*/
  15. // NotifySend.h : header file
  16. //
  17. /////////////////////////////////////////////////////////////////////////////
  18. // NotifySend dialog
  19. #include "snmp_pp.h"
  20. #include "tarinc.h"
  21. #define MAX_TRAP_VBS 25
  22. class NotifySend : public CDialog
  23. {
  24. // Construction
  25. public:
  26. NotifySend(CWnd* pParent = NULL);   // standard constructor
  27. // Dialog Data
  28. //{{AFX_DATA(NotifySend)
  29. enum { IDD = IDD_NOTIFY_SEND };
  30. CString m_read_community;
  31. CString m_write_community;
  32. CString m_retries;
  33. CString m_timeouts;
  34. CString m_mgmt_proto;
  35. CString m_net_proto;
  36. CString m_oid;
  37. CString m_customid;
  38. CString m_enterprise;
  39. CString m_output;
  40. //}}AFX_DATA
  41. // Overrides
  42. // ClassWizard generated virtual function overrides
  43. //{{AFX_VIRTUAL(NotifySend)
  44. protected:
  45. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  46. //}}AFX_VIRTUAL
  47. // Implementation
  48. protected:
  49. Snmp *snmp;
  50. virtual void PostNcDestroy() 
  51. {  
  52.    if ( snmp != NULL) delete snmp;
  53.        delete this;   
  54. };
  55. void load_target_attribs( TargetDb_Rec db_rec);
  56. Vb trap_vbs[ MAX_TRAP_VBS];
  57. // Generated message map functions
  58. //{{AFX_MSG(NotifySend)
  59. virtual BOOL OnInitDialog();
  60. afx_msg void OnSelchangeTargets();
  61. afx_msg void OnAddoid();
  62. afx_msg void OnEditpay();
  63. afx_msg void OnDelpay();
  64. afx_msg void OnDblclkPdu();
  65. virtual void OnOK();
  66. afx_msg void OnTimer(UINT nIDEvent);
  67. virtual void OnCancel();
  68. //}}AFX_MSG
  69. DECLARE_MESSAGE_MAP()
  70. };