DetectorHeightController.h 489 B

123456789101112131415161718192021
  1. #pragma once
  2. #include "IDetectorHeightController.h"
  3. namespace DIOS::Dev::Detail::MachineryECOM
  4. {
  5. class DetectorHeightController : public IDetectorHeightController
  6. {
  7. public:
  8. DetectorHeightController();
  9. ~DetectorHeightController();
  10. public:
  11. static std::string CLASSID();
  12. public:
  13. virtual void Initialize(const std::string &name) override;
  14. virtual void OnCommunicationEstablished(ICommunicateEntity *communicate) override;
  15. private:
  16. ICommunicateEntity *m_communicate;
  17. };
  18. }