IMotionEventReceiver.h 247 B

123456789101112131415
  1. #pragma once
  2. namespace DIOS::Dev::Detail::MachineryECOM
  3. {
  4. class IMotionEventReceiver
  5. {
  6. public:
  7. IMotionEventReceiver(){}
  8. virtual ~IMotionEventReceiver(){}
  9. public:
  10. virtual void OnMotionEvent(const std::string &motionEventName) {}
  11. };
  12. }