插件节点构造函数。
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 &&); |
参数名 |
输入/输出 |
说明 |
---|---|---|
factory |
输入 |
创建插件的工厂名称。 |
props |
输入 |
插件属性配置项,默认为空。 |
name |
输入 |
插件名。默认为空时,会根据factory自动生成插件名。 |
PluginNode |
输入 |
拷贝构造入参。 |