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.

51 lines
1.1 KiB

  1. // HMStatistics.h: interface for the CHMStatistics class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_HMSTATISTICS_H__8F327D2B_909C_11D3_BE87_0000F87A3912__INCLUDED_)
  5. #define AFX_HMSTATISTICS_H__8F327D2B_909C_11D3_BE87_0000F87A3912__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "Statistics.h"
  10. class CHMStatistics : public CStatistics
  11. {
  12. DECLARE_DYNCREATE(CHMStatistics)
  13. // Construction/Destruction
  14. public:
  15. CHMStatistics();
  16. virtual ~CHMStatistics();
  17. // Counts of State for immediate children
  18. public:
  19. int m_iNumberNormals;
  20. int m_iNumberWarnings;
  21. int m_iNumberCriticals;
  22. int m_iNumberUnknowns;
  23. // Name
  24. public:
  25. CString m_sName;
  26. // Result Pane Item Members
  27. public:
  28. virtual CHMEventResultsPaneItem* CreateResultsPaneItem(CResultsPaneView* pView);
  29. // Graph Members
  30. public:
  31. virtual void UpdateGraph(_DHMGraphView* pGraphView);
  32. // Equivalence operator
  33. public:
  34. virtual int CompareTo(CStatistics* pStat);
  35. };
  36. #include "HMStatistics.inl"
  37. #endif // !defined(AFX_HMSTATISTICS_H__8F327D2B_909C_11D3_BE87_0000F87A3912__INCLUDED_)