38 lines
737 B
C++
38 lines
737 B
C++
|
|
/*
|
|||
|
|
* AdditionValueAsync.hh
|
|||
|
|
*
|
|||
|
|
* Created on: 14 <EFBFBD><EFBFBD><EFBFBD>. 2022 <EFBFBD>.
|
|||
|
|
* 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:
|
|||
|
|
//!<21><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.
|
|||
|
|
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_ */
|