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.

60 lines
1.3 KiB

  1. // DataPointStatistics.h: interface for the CDataPointStatistics class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. // 04/09/00 v-marfin 63119 : converted m_iCurrent to string
  5. #if !defined(AFX_DATAPOINTSTATISTICS_H__C65C8864_9484_11D3_93A7_00A0CC406605__INCLUDED_)
  6. #define AFX_DATAPOINTSTATISTICS_H__C65C8864_9484_11D3_93A7_00A0CC406605__INCLUDED_
  7. #if _MSC_VER > 1000
  8. #pragma once
  9. #endif // _MSC_VER > 1000
  10. #include "Statistics.h"
  11. class CDataPointStatistics : public CStatistics
  12. {
  13. DECLARE_DYNCREATE(CDataPointStatistics)
  14. // Construction/Destruction
  15. public:
  16. CDataPointStatistics();
  17. virtual ~CDataPointStatistics();
  18. // Statistic Information
  19. public:
  20. CString m_sPropertyName;
  21. CString m_sInstanceName;
  22. // 63119 int m_iCurrent;
  23. CString m_strCurrent; // 63119
  24. int m_iMin;
  25. int m_iMax;
  26. int m_iAvg;
  27. // Result Pane Item Members
  28. public:
  29. virtual CHMEventResultsPaneItem* CreateResultsPaneItem(CResultsPaneView* pView);
  30. virtual void SetResultsPaneItem(CHMEventResultsPaneItem* pItem);
  31. // Graph Members
  32. public:
  33. virtual void UpdateGraph(_DHMGraphView* pGraphView);
  34. // CompareTo
  35. public:
  36. virtual int CompareTo(CStatistics* pStat);
  37. // Copy
  38. public:
  39. virtual CStatistics* Copy();
  40. };
  41. #include "DataPointStatistics.inl"
  42. #endif // !defined(AFX_DATAPOINTSTATISTICS_H__C65C8864_9484_11D3_93A7_00A0CC406605__INCLUDED_)