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

38 lines
770 B
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.

/*
* 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_ */