FlowNode Constructor and Destructor
Applicability
Product |
Supported |
|---|---|
√ |
|
√ |
|
x |
|
x |
|
x |
Function Description
Constructs and destructs an object of class FlowNode. The constructor returns a FlowNode node.
Prototype
1 2 | FlowNode(const char *name, uint32_t input_num, uint32_t output_num) ~FlowNode() override |
Command-Line Options
Parameter |
Input/Output |
Description |
|---|---|---|
name |
Input |
Name of the compute node, which must be unique for a graph. |
input_num |
Input |
Number of node inputs. |
output_num |
Input |
Number of node outputs. |
Returns
A FlowNode node is returned.
Troubleshooting
None
Restrictions
None
Parent topic: Class FlowNode