EventQueue.h 303 B

1234567891011121314151617
  1. #ifndef __EVENTQUEUE_H__
  2. #define __EVENTQUEUE_H__
  3. #include "ListEx.h"
  4. typedef struct _SEvent* LPSEVENT;
  5. class CEventQueue : public CListEx<LPSEVENT>
  6. {
  7. public:
  8. CEventQueue();
  9. virtual ~CEventQueue();
  10. void DeleteItem(IN LPSEVENT lpEvent);
  11. virtual void Clear();
  12. };
  13. #endif //#ifndef __EVENTQUEUE_H__