Embedded Multicore Building Blocks V1.0.0
|
Output port class. More...
#include <network.h>
Public Types | |
typedef In< Type > | InType |
Input port class that can be connected to this output port. More... | |
Public Member Functions | |
void | Connect (InType &input) |
Connects this output port to the input port input . More... | |
void | operator>> (InType &input) |
Connects this output port to the input port input . More... | |
Output port class.
typedef In<Type> embb::dataflow::Network::Out< Type >::InType |
Input port class that can be connected to this output port.
void embb::dataflow::Network::Out< Type >::Connect | ( | InType & | input | ) |
Connects this output port to the input port input
.
If the input port already was connected to a different output an ErrorException is thrown.
input | The input port to connect to. |
void embb::dataflow::Network::Out< Type >::operator>> | ( | InType & | input | ) |
Connects this output port to the input port input
.
If the input port already was connected to a different output an ErrorException is thrown.
input | The input port to connect to. |