summaryrefslogtreecommitdiffstats
path: root/src/engine/InternalPlugin.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/InternalPlugin.hpp')
-rw-r--r--src/engine/InternalPlugin.hpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/engine/InternalPlugin.hpp b/src/engine/InternalPlugin.hpp
index 1ada28a1..095899eb 100644
--- a/src/engine/InternalPlugin.hpp
+++ b/src/engine/InternalPlugin.hpp
@@ -47,11 +47,9 @@ class InternalPlugin : public PluginImpl
{
public:
InternalPlugin(const std::string& uri,
- const std::string& symbol,
- const std::string& name)
+ const std::string& symbol)
: PluginImpl(Plugin::Internal, uri)
, _symbol(symbol)
- , _name(name)
{}
NodeImpl* instantiate(const std::string& name,
@@ -60,11 +58,9 @@ public:
Engine& engine);
const string symbol() const { return _symbol; }
- const string name() const { return _name; }
private:
const string _symbol;
- const string _name;
};