Outputs¶
-
class COutput¶
Read-only Signal in which the processing blocks writes the results. The result can be used by connecting an output object to an input. The data type
<T>
is specified in the interface definition.-
template<typename T>
void Write(T value)¶ Writes the value to the corresponding read-only Signal.
- Parameters
value – Value of the output in the specified data type.
-
template<typename T>
T Value()¶ Reads the value of the corresponding read-only Signal.
- Returns
T – The value of the output with data type as specified in the interface definition.
-
template<typename T>