PluginNode
Function Usage
Constructor of plugin nodes.
Prototype
1 2 3 | PluginNode::PluginNode(const std::string& factory, const std::map<std::string, std::string>& props = std::map<std::string, std::string>(), const std::string& name = ""); PluginNode::PluginNode(const PluginNode &); PluginNode::PluginNode(const PluginNode &&); |
Parameters
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 |
Parent topic: PluginNode