Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
845 B

  1. // DataPointStatistics.cpp: implementation of the CDataPointStatistics class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. // 04/09/00 v-marfin 63119 : converted m_iCurrent to string
  5. //
  6. //
  7. #include "stdafx.h"
  8. #include "snapin.h"
  9. #include "DataPointStatistics.h"
  10. #ifdef _DEBUG
  11. #undef THIS_FILE
  12. static char THIS_FILE[]=__FILE__;
  13. #define new DEBUG_NEW
  14. #endif
  15. IMPLEMENT_DYNCREATE(CDataPointStatistics,CStatistics)
  16. //////////////////////////////////////////////////////////////////////
  17. // Construction/Destruction
  18. //////////////////////////////////////////////////////////////////////
  19. CDataPointStatistics::CDataPointStatistics()
  20. {
  21. // 63119 m_iCurrent = 0;
  22. m_iMin = 0;
  23. m_iMax = 0;
  24. m_iAvg = 0;
  25. }
  26. CDataPointStatistics::~CDataPointStatistics()
  27. {
  28. // 63119 m_iCurrent = 0;
  29. m_iMin = 0;
  30. m_iMax = 0;
  31. m_iAvg = 0;
  32. }