Leaked source code of windows server 2003
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.

61 lines
1.1 KiB

  1. /*++
  2. Copyright (c) 1994-95 Microsoft Corporation
  3. Module Name:
  4. stacol.h
  5. Abstract:
  6. Statistic collection object implementation.
  7. Author:
  8. Don Ryan (donryan) 04-Jan-1995
  9. Environment:
  10. User Mode - Win32
  11. Revision History:
  12. --*/
  13. #ifndef _STACOL_H_
  14. #define _STACOL_H_
  15. class CStatistics : public CCmdTarget
  16. {
  17. DECLARE_DYNCREATE(CStatistics)
  18. private:
  19. CCmdTarget* m_pParent;
  20. public:
  21. CObArray* m_pObArray;
  22. public:
  23. CStatistics(CCmdTarget* pParent = NULL, CObArray* pObArray = NULL);
  24. virtual ~CStatistics();
  25. //{{AFX_VIRTUAL(CStatistics)
  26. public:
  27. virtual void OnFinalRelease();
  28. //}}AFX_VIRTUAL
  29. //{{AFX_DISPATCH(CStatistics)
  30. afx_msg long GetCount();
  31. afx_msg LPDISPATCH GetApplication();
  32. afx_msg LPDISPATCH GetParent();
  33. afx_msg LPDISPATCH GetItem(const VARIANT FAR& index);
  34. //}}AFX_DISPATCH
  35. DECLARE_DISPATCH_MAP()
  36. protected:
  37. //{{AFX_MSG(CStatistics)
  38. // NOTE - the ClassWizard will add and remove member functions here.
  39. //}}AFX_MSG
  40. DECLARE_MESSAGE_MAP()
  41. };
  42. #endif // _STACOL_H_