IpData.cpp
上传用户:ykzxjx
上传日期:2022-04-03
资源大小:1175k
文件大小:2k
开发平台:

Visual C++

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //
  3. // (C) Copyright 1999 - 2000 Mark Roddy
  4. // All Rights Reserved
  5. //
  6. // Hollis Technology Solutions
  7. // 94 Dow Road
  8. // Hollis, NH 03049
  9. // info@hollistech.com
  10. //
  11. // Synopsis: 
  12. // 
  13. //
  14. // Version Information:
  15. //
  16. // $Header: /iphook/usr/IpMonitor/IpData.cpp 2     1/27/00 10:35p Markr $ 
  17. //
  18. ///////////////////////////////////////////////////////////////////////////////
  19. // IpData.cpp : implementation file
  20. //
  21. #include "stdafx.h"
  22. #include "IpMonitor.h"
  23. #include "IpData.h"
  24. #ifdef _DEBUG
  25. #define new DEBUG_NEW
  26. #undef THIS_FILE
  27. static char THIS_FILE[] = __FILE__;
  28. #endif
  29. /////////////////////////////////////////////////////////////////////////////
  30. // IpData
  31. IMPLEMENT_DYNCREATE(IpData, CFormView)
  32. IpData::IpData()
  33. : CFormView(IpData::IDD)
  34. {
  35. //{{AFX_DATA_INIT(IpData)
  36. // NOTE: the ClassWizard will add member initialization here
  37. //}}AFX_DATA_INIT
  38. }
  39. IpData::~IpData()
  40. {
  41. }
  42. void IpData::DoDataExchange(CDataExchange* pDX)
  43. {
  44. CFormView::DoDataExchange(pDX);
  45. //{{AFX_DATA_MAP(IpData)
  46. // NOTE: the ClassWizard will add DDX and DDV calls here
  47. //}}AFX_DATA_MAP
  48. }
  49. BEGIN_MESSAGE_MAP(IpData, CFormView)
  50. //{{AFX_MSG_MAP(IpData)
  51. // NOTE - the ClassWizard will add and remove mapping macros here.
  52. //}}AFX_MSG_MAP
  53. END_MESSAGE_MAP()
  54. /////////////////////////////////////////////////////////////////////////////
  55. // IpData diagnostics
  56. #ifdef _DEBUG
  57. void IpData::AssertValid() const
  58. {
  59. CFormView::AssertValid();
  60. }
  61. void IpData::Dump(CDumpContext& dc) const
  62. {
  63. CFormView::Dump(dc);
  64. }
  65. #endif //_DEBUG
  66. /////////////////////////////////////////////////////////////////////////////
  67. // IpData message handlers
  68. ///////////////////////////////////////////////////////////////////////////////
  69. // 
  70. // Change History Log
  71. //
  72. // $Log: /iphook/usr/IpMonitor/IpData.cpp $
  73. // 
  74. // 2     1/27/00 10:35p Markr
  75. // Prepare to release!
  76. //
  77. ///////////////////////////////////////////////////////////////////////////////