Notify_Thread.h 243 B

12345678910111213141516171819
  1. #pragma once
  2. #include "DPC.h"
  3. #include "CcosThread.h"
  4. class Notify_Thread : public Work_Thread
  5. {
  6. public:
  7. DriverDPC *m_pDPC;
  8. Notify_Thread();
  9. virtual ~Notify_Thread();
  10. void SetDPC(DriverDPC *pDPC);
  11. protected:
  12. virtual bool Exec();
  13. };