summaryrefslogtreecommitdiffstats
path: root/src/engine/NodeFactory.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-04-16 19:02:36 +0000
committerDavid Robillard <d@drobilla.net>2011-04-16 19:02:36 +0000
commit9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2 (patch)
tree089c1366a567dfbf88c0473288236b276ef24bf6 /src/engine/NodeFactory.cpp
parent987710474b824cb92d83ff6fa7a090f50e10756f (diff)
downloadingen-9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2.tar.gz
ingen-9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2.tar.bz2
ingen-9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2.zip
Squeeze blank lines and delete trailing whitespace.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3152 a436a847-0d15-0410-975c-d299462d15a1
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.
*/