EventThread.h 226 B

1234567891011121314151617
  1. #ifndef __EVENTTHREAD_H__
  2. #define __EVENTTHREAD_H__
  3. #include "Thread.h"
  4. class CEventPool;
  5. class CEventThread : public CThreadBase
  6. {
  7. public:
  8. CEventThread();
  9. virtual ~CEventThread();
  10. virtual THREADSTATUS Run();
  11. };
  12. #endif