browserView.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. // browserView.h : interface of the CBrowserView class
  17. //
  18. /////////////////////////////////////////////////////////////////////////////
  19. class CBrowserView : public CView
  20. {
  21. protected: // create from serialization only
  22. CBrowserView();
  23. DECLARE_DYNCREATE(CBrowserView)
  24. // Attributes
  25. public:
  26. CBrowserDoc* GetDocument();
  27. // Operations
  28. public:
  29. // Overrides
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(CBrowserView)
  32. public:
  33. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  34. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  35. protected:
  36. //}}AFX_VIRTUAL
  37. // Implementation
  38. public:
  39. virtual ~CBrowserView();
  40. #ifdef _DEBUG
  41. virtual void AssertValid() const;
  42. virtual void Dump(CDumpContext& dc) const;
  43. #endif
  44. protected:
  45. // Generated message map functions
  46. protected:
  47. //{{AFX_MSG(CBrowserView)
  48. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  49. //}}AFX_MSG
  50. DECLARE_MESSAGE_MAP()
  51. };
  52. #ifndef _DEBUG  // debug version in browserView.cpp
  53. inline CBrowserDoc* CBrowserView::GetDocument()
  54.    { return (CBrowserDoc*)m_pDocument; }
  55. #endif
  56. /////////////////////////////////////////////////////////////////////////////