1234567891011121314151617 |
- #ifndef __EVENTQUEUE_H__
- #define __EVENTQUEUE_H__
- #include "ListEx.h"
- typedef struct _SEvent* LPSEVENT;
- class CEventQueue : public CListEx<LPSEVENT>
- {
- public:
- CEventQueue();
- virtual ~CEventQueue();
- void DeleteItem(IN LPSEVENT lpEvent);
- virtual void Clear();
- };
- #endif //#ifndef __EVENTQUEUE_H__
|