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
920 B

  1. // SystemEventContainer.h: interface for the CSystemEventContainer class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_SYSTEMEVENTCONTAINER_H__5ABFA7D6_8EEC_11D3_93A5_00A0CC406605__INCLUDED_)
  5. #define AFX_SYSTEMEVENTCONTAINER_H__5ABFA7D6_8EEC_11D3_93A5_00A0CC406605__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "EventContainer.h"
  10. #include "SystemStatusListener.h"
  11. class CSystemEventContainer : public CEventContainer
  12. {
  13. DECLARE_DYNCREATE(CSystemEventContainer)
  14. // Construction/Destruction
  15. public:
  16. CSystemEventContainer();
  17. virtual ~CSystemEventContainer();
  18. // Operations
  19. public:
  20. virtual void DeleteEvent(int iIndex);
  21. // Event Listener
  22. public:
  23. CSystemStatusListener* m_pSystemStatusListener;
  24. };
  25. #include "SystemEventContainer.inl"
  26. #endif // !defined(AFX_SYSTEMEVENTCONTAINER_H__5ABFA7D6_8EEC_11D3_93A5_00A0CC406605__INCLUDED_)