summaryrefslogtreecommitdiffstats
path: root/src/engine/NodeFactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/NodeFactory.cpp')
-rw-r--r--src/engine/NodeFactory.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/engine/NodeFactory.cpp b/src/engine/NodeFactory.cpp
index 8ed1dc81..8d4ce082 100644
--- a/src/engine/NodeFactory.cpp
+++ b/src/engine/NodeFactory.cpp
@@ -48,7 +48,6 @@ namespace Ingen {
using namespace Internals;
-
NodeFactory::NodeFactory(Ingen::Shared::World* world)
: _world(world)
, _has_loaded(false)
@@ -58,7 +57,6 @@ NodeFactory::NodeFactory(Ingen::Shared::World* world)
{
}
-
NodeFactory::~NodeFactory()
{
for (Plugins::iterator i = _plugins.begin(); i != _plugins.end(); ++i)
@@ -67,7 +65,6 @@ NodeFactory::~NodeFactory()
_plugins.clear();
}
-
PluginImpl*
NodeFactory::plugin(const Raul::URI& uri)
{
@@ -75,7 +72,6 @@ NodeFactory::plugin(const Raul::URI& uri)
return ((i != _plugins.end()) ? i->second : NULL);
}
-
void
NodeFactory::load_plugins()
{
@@ -97,7 +93,6 @@ NodeFactory::load_plugins()
}
}
-
void
NodeFactory::load_internal_plugins()
{
@@ -115,7 +110,6 @@ NodeFactory::load_internal_plugins()
_plugins.insert(make_pair(trigger_plug->uri(), trigger_plug));
}
-
#ifdef HAVE_SLV2
/** Loads information about all LV2 plugins into internal plugin database.
*/