browser.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. #ifndef __AFXWIN_H__
  17. #error include 'stdafx.h' before including this file for PCH
  18. #endif
  19. #include "resource.h"       // main symbols
  20. #include "mainfrm.h"
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CBrowserApp:
  23. // See browser.cpp for the implementation of this class
  24. //
  25. class CBrowserApp : public CWinApp
  26. {
  27. public:
  28. CBrowserApp();
  29. CMainFrame *mf;
  30. // Overrides
  31. // ClassWizard generated virtual function overrides
  32. //{{AFX_VIRTUAL(CBrowserApp)
  33. public:
  34. virtual BOOL InitInstance();
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. //{{AFX_MSG(CBrowserApp)
  38. afx_msg void OnAppAbout();
  39. // NOTE - the ClassWizard will add and remove member functions here.
  40. //    DO NOT EDIT what you see in these blocks of generated code !
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. };
  44. extern  CBrowserApp theApp;
  45. /////////////////////////////////////////////////////////////////////////////