27 lines
826 B
C++
27 lines
826 B
C++
/*
|
|
* PhaseSpaceToValueUnitTie.hh
|
|
*
|
|
* Created on: 11 àâã. 2020 ã.
|
|
* Author: LeonidTitov
|
|
*/
|
|
|
|
#ifndef UMLIBRARY_TECHNOLOGICAL_ADAPTER_PHASESPACETOVALUEUNITTIE_HH_
|
|
#define UMLIBRARY_TECHNOLOGICAL_ADAPTER_PHASESPACETOVALUEUNITTIE_HH_
|
|
|
|
#include "ControlSystemWrapper.hpp"
|
|
#include "ControlSystemTie.hh"
|
|
|
|
#include "../../processing/acs/ControlSystemInterface.hh"
|
|
|
|
namespace technological { namespace adapter {
|
|
|
|
typedef TieWrapper<vector::IPhaseSpaceValue, processing::acs::PhaseSpaceToValueUnitInterface, vector::ITechValue,
|
|
OnControlUnitConnect<processing::acs::PhaseSpaceToValueUnitInterface, vector::ITechValue>,
|
|
OnControlUnitDisconnect<processing::acs::PhaseSpaceToValueUnitInterface> > PhaseSpaceToValueUnitTie;
|
|
|
|
}}
|
|
|
|
|
|
|
|
#endif /* UMLIBRARY_TECHNOLOGICAL_ADAPTER_PHASESPACETOVALUEUNITTIE_HH_ */
|