MainFrm.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. =============================================================================*/
  16. // MainFrm.h : interface of the CMainFrame class
  17. //
  18. /////////////////////////////////////////////////////////////////////////////
  19. #ifndef _MAINFRAME
  20. #define _MAINFRAME
  21. class CMainFrame : public CFrameWnd
  22. {
  23. protected: // create from serialization only
  24. CMainFrame();
  25. DECLARE_DYNCREATE(CMainFrame)
  26. // Attributes
  27. public:
  28. // Operations
  29. public:
  30. // Overrides
  31. // ClassWizard generated virtual function overrides
  32. //{{AFX_VIRTUAL(CMainFrame)
  33. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  34. //}}AFX_VIRTUAL
  35. // Implementation
  36. public:
  37. virtual ~CMainFrame();
  38. #ifdef _DEBUG
  39. virtual void AssertValid() const;
  40. virtual void Dump(CDumpContext& dc) const;
  41. #endif
  42. public:  // control bar embedded members
  43. CStatusBar  m_wndStatusBar;
  44. CToolBar    m_wndToolBar;
  45. // Generated message map functions
  46. protected:
  47. //{{AFX_MSG(CMainFrame)
  48. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  49. afx_msg void OnGet();
  50. afx_msg void OnGetnext();
  51. afx_msg void OnSet();
  52. afx_msg void OnSendNotify();
  53. afx_msg void OnReceiveNotify();
  54. afx_msg void OnTargetEdit();
  55. afx_msg void OnStats();
  56. afx_msg void OnInform();
  57. afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
  58. afx_msg void OnBulk();
  59. //}}AFX_MSG
  60. DECLARE_MESSAGE_MAP()
  61. };
  62. #endif
  63. /////////////////////////////////////////////////////////////////////////////