NotifyReceive.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. // NotifyReceive.h : header file
  16. //
  17. /////////////////////////////////////////////////////////////////////////////
  18. // NotifyReceive dialog
  19. #include "snmp_pp.h"
  20. class NotifyReceive : public CDialog
  21. {
  22. // Construction
  23. public:
  24. NotifyReceive(CWnd* pParent = NULL);   // standard constructor
  25. // Dialog Data
  26. //{{AFX_DATA(NotifyReceive)
  27. enum { IDD = IDD_NOTIFY_RECEIVE };
  28. // NOTE: the ClassWizard will add data members here
  29. //}}AFX_DATA
  30. // Overrides
  31. // ClassWizard generated virtual function overrides
  32. //{{AFX_VIRTUAL(NotifyReceive)
  33. protected:
  34. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. protected:
  38. Snmp *snmp;
  39. virtual void PostNcDestroy() 
  40. {  
  41.    if ( snmp != NULL) 
  42.    delete snmp;
  43.        delete this;   
  44. };
  45. OidCollection my_filters;
  46. // Generated message map functions
  47. //{{AFX_MSG(NotifyReceive)
  48. afx_msg void OnClear();
  49. virtual BOOL OnInitDialog();
  50. virtual void OnCancel();
  51. afx_msg void OnFilters();
  52. //}}AFX_MSG
  53. DECLARE_MESSAGE_MAP()
  54. };