ParkingMotionStageArgs.h 222 B

1234567891011121314
  1. #pragma once
  2. #include "IMotionStageArgs.h"
  3. namespace DIOS::Dev::Detail::MachineryECOM
  4. {
  5. class ParkingMotionStageArgs : public IMotionStageArgs
  6. {
  7. public:
  8. ParkingMotionStageArgs();
  9. ~ParkingMotionStageArgs();
  10. };
  11. }