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.

35 lines
784 B

  1. // HMStatistics.cpp: implementation of the CHMStatistics class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "snapin.h"
  6. #include "HMStatistics.h"
  7. #ifdef _DEBUG
  8. #undef THIS_FILE
  9. static char THIS_FILE[]=__FILE__;
  10. #define new DEBUG_NEW
  11. #endif
  12. IMPLEMENT_DYNCREATE(CHMStatistics,CStatistics)
  13. //////////////////////////////////////////////////////////////////////
  14. // Construction/Destruction
  15. //////////////////////////////////////////////////////////////////////
  16. CHMStatistics::CHMStatistics()
  17. {
  18. m_iNumberNormals = 0;
  19. m_iNumberWarnings = 0;
  20. m_iNumberCriticals = 0;
  21. m_iNumberUnknowns = 0;
  22. }
  23. CHMStatistics::~CHMStatistics()
  24. {
  25. m_iNumberNormals = 0;
  26. m_iNumberWarnings = 0;
  27. m_iNumberCriticals = 0;
  28. m_iNumberUnknowns = 0;
  29. }