MotorControlModuleSDFM_TMS3.../Projects/EFC_Communication/UMLibrary/processing/acs/ControlSystemInterface.hh
2024-06-07 11:12:56 +03:00

37 lines
1.3 KiB
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* ControlSystemInterface.hh
*
* Created on: 30 мая 2020 г.
* Author: LeonidTitov
*/
#ifndef UMLIBRARY_PROCESSING_ACS_CONTROLSYSTEMINTERFACE_HH_
#define UMLIBRARY_PROCESSING_ACS_CONTROLSYSTEMINTERFACE_HH_
namespace processing { namespace acs {
struct ControlSystemInterface {
virtual void reset() = 0;
virtual ~ControlSystemInterface() = default;
};
}}
#include "VectorAsyncInterface.hh"
namespace processing { namespace acs {
struct PhaseSpaceToStandingVectorUnitInterface : ControlSystemInterface, vector::IPhaseSpaceValue, vector::IStandingVectorOutput {};
struct PhaseSpaceToPhaseSpaceUnitInterface : ControlSystemInterface, vector::IPhaseSpaceValue, vector::IPhaseSpaceValueOutput {};
struct ValueToValueUnitInterface : ControlSystemInterface, vector::ITechValue, vector::IValueOutput {};
struct ValueToPhaseSpaceUnitInterface : ControlSystemInterface, vector::ITechValue, vector::IPhaseSpaceValueOutput {};
struct PhaseSpaceToValueUnitInterface : ControlSystemInterface, vector::IPhaseSpaceValue, vector::IValueOutput {};
struct StandingVectorToStandingVectorUnitInterface :ControlSystemInterface, vector::IStandingVectorValue, vector::IStandingVectorOutput {};
}}
#endif /* UMLIBRARY_PROCESSING_ACS_CONTROLSYSTEMINTERFACE_HH_ */