DetectorHeightController.cpp 594 B

12345678910111213141516171819202122232425262728
  1. #include "stdafx.h"
  2. #include "DetectorHeightController.h"
  3. using namespace DIOS::Dev::Detail::MachineryECOM;
  4. DetectorHeightController::DetectorHeightController() :m_communicate(nullptr)
  5. {
  6. }
  7. DetectorHeightController::~DetectorHeightController()
  8. {
  9. }
  10. std::string DetectorHeightController::CLASSID()
  11. {
  12. return "B58CED2E-78FC-4AD7-BFAA-792532B74362";
  13. }
  14. void DetectorHeightController::Initialize(const std::string &name)
  15. {
  16. SetName(name);
  17. }
  18. void DetectorHeightController::OnCommunicationEstablished(ICommunicateEntity *communicate)
  19. {
  20. m_communicate = communicate;
  21. }