/* * AdditionValueAsync.hh * * Created on: 14 янв. 2022 г. * Author: titov */ #ifndef UMLIBRARY_PROCESSING_ACS_ADDITIONVALUEASYNC_HH_ #define UMLIBRARY_PROCESSING_ACS_ADDITIONVALUEASYNC_HH_ #include "ControlSystemInterface.hh" #include "../../systemic/ISignal.hh" namespace processing { namespace acs { class AdditionValueAsync : public ValueToValueUnitInterface { public: //!Установить ошибку регулирования. void set( TypeInput ); TypeOutput get() const; void set_output( SetInterface * ); void reset(); AdditionValueAsync( systemic::ISignal & coeff ); private: systemic::ISignal & summand; SetInterface * output; }; }} #endif /* UMLIBRARY_PROCESSING_ACS_ADDITIONVALUEASYNC_HH_ */