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

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. #include "stdafx.h"
  16. #include "browser.h"
  17. #include "browserDoc.h"
  18. #ifdef _DEBUG
  19. #define new DEBUG_NEW
  20. #undef THIS_FILE
  21. static char THIS_FILE[] = __FILE__;
  22. #endif
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CBrowserDoc
  25. IMPLEMENT_DYNCREATE(CBrowserDoc, CDocument)
  26. BEGIN_MESSAGE_MAP(CBrowserDoc, CDocument)
  27. //{{AFX_MSG_MAP(CBrowserDoc)
  28. // NOTE - the ClassWizard will add and remove mapping macros here.
  29. //    DO NOT EDIT what you see in these blocks of generated code!
  30. //}}AFX_MSG_MAP
  31. END_MESSAGE_MAP()
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CBrowserDoc construction/destruction
  34. CBrowserDoc::CBrowserDoc()
  35. {
  36. // TODO: add one-time construction code here
  37. }
  38. CBrowserDoc::~CBrowserDoc()
  39. {
  40. }
  41. BOOL CBrowserDoc::OnNewDocument()
  42. {
  43. if (!CDocument::OnNewDocument())
  44. return FALSE;
  45. // TODO: add reinitialization code here
  46. // (SDI documents will reuse this document)
  47. SetTitle("Browser");
  48. return TRUE;
  49. }
  50. /////////////////////////////////////////////////////////////////////////////
  51. // CBrowserDoc serialization
  52. void CBrowserDoc::Serialize(CArchive& ar)
  53. {
  54. if (ar.IsStoring())
  55. {
  56. // TODO: add storing code here
  57. }
  58. else
  59. {
  60. // TODO: add loading code here
  61. }
  62. }
  63. /////////////////////////////////////////////////////////////////////////////
  64. // CBrowserDoc diagnostics
  65. #ifdef _DEBUG
  66. void CBrowserDoc::AssertValid() const
  67. {
  68. CDocument::AssertValid();
  69. }
  70. void CBrowserDoc::Dump(CDumpContext& dc) const
  71. {
  72. CDocument::Dump(dc);
  73. }
  74. #endif //_DEBUG
  75. /////////////////////////////////////////////////////////////////////////////
  76. // CBrowserDoc commands