operator()

Function Usage

Sets the forward plugin node.

Prototype

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
PluginNode& PluginNode::operator()(PluginNode& preNode);

template<typename... Args>
PluginNode& PluginNode::operator()(PluginNode& preNode, Args&... args)
{
    operator()(preNode);
    operator()(args...);
    return *this;
}

PluginNode& PluginNode::operator()(std::vector<PluginNode>& preNodeList);

Parameters

Parameter

Input/Output

Description

preNode

Input

Object of the forward plugin class.

args

Input

(Optional) Set this parameter as required

preNodeList

Input

Object list of the forward plugin class.

Response Parameters

Data Structure

Description

PluginNode

Returned plugin nodes.