12345678910111213141516171819202122232425262728 |
- #include "stdafx.h"
- #include "DetectorHeightController.h"
- using namespace DIOS::Dev::Detail::MachineryECOM;
- DetectorHeightController::DetectorHeightController() :m_communicate(nullptr)
- {
- }
- DetectorHeightController::~DetectorHeightController()
- {
- }
- std::string DetectorHeightController::CLASSID()
- {
- return "B58CED2E-78FC-4AD7-BFAA-792532B74362";
- }
- void DetectorHeightController::Initialize(const std::string &name)
- {
- SetName(name);
- }
- void DetectorHeightController::OnCommunicationEstablished(ICommunicateEntity *communicate)
- {
- m_communicate = communicate;
- }
|