operator()
Function Usage
Sets the forward plugin node.
Prototype
PluginNode& operator()(PluginNode& preNode)
template<typename... Args>
PluginNode& operator()(PluginNode& preNode, Args&... args)
{
operator()(preNode);
operator()(args...);
return *this;
}
PluginNode& operator()(std::vector<PluginNode>& preNodeList);
Parameter Description
Parameter |
Input/Output |
Description |
|---|---|---|
preNode |
Input |
Object of the forward plugin class |
args |
Input |
(Optional) Sets this parameter as required. |
preNodeList |
Input |
Object list of the forward plugin class |
Return Parameter Description
Data Structure |
Description |
|---|---|
PluginNode |
Returned plugin nodes |
Parent topic: PluginNode