PluginNode

Function Usage

Constructor function of plugin nodes.

Prototype

 PluginNode(const std::string& factory,
        const std::map<std::string, std::string>& props = std::map<std::string, std::string>(),
        const std::string& name = "");
 PluginNode(const PluginNode &);
 PluginNode(const PluginNode &&);

Parameter Description

Parameter

Input/Output

Description

factory

Input

Name of the factory that creates the plugin

props

Input

Plugin property-related configuration item, which is left empty by default.

name

Input

Plugin name. If this parameter is left empty by default, the plugin name is automatically generated based on factory.

PluginNode

Input

Input parameter of the copy constructor