linux版本中间件

ITimer.h 72B

12345678
  1. #pragma once
  2. class ITimer
  3. {
  4. public:
  5. virtual void onTimer() = 0;
  6. };