summaryrefslogtreecommitdiffstats
path: root/src/engine/NodeFactory.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-11-29 00:07:30 +0000
committerDavid Robillard <d@drobilla.net>2008-11-29 00:07:30 +0000
commit0674d8cf8a96210eb692176864d92dc2806f6457 (patch)
tree0a27a29333e363e2a4e724897069a5aba6665a92 /src/engine/NodeFactory.cpp
parent6b04f4fd3a84457eed53132ac42b6b8f44b289d6 (diff)
downloadingen-0674d8cf8a96210eb692176864d92dc2806f6457.tar.gz
ingen-0674d8cf8a96210eb692176864d92dc2806f6457.tar.bz2
ingen-0674d8cf8a96210eb692176864d92dc2806f6457.zip
Clean up and organize internals.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1819 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/NodeFactory.cpp')
-rw-r--r--src/engine/NodeFactory.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/engine/NodeFactory.cpp b/src/engine/NodeFactory.cpp
index 0d15907b..7e5375c2 100644
--- a/src/engine/NodeFactory.cpp
+++ b/src/engine/NodeFactory.cpp
@@ -25,10 +25,10 @@
#include "module/World.hpp"
#include "NodeFactory.hpp"
#include "ThreadManager.hpp"
-#include "MidiNoteNode.hpp"
-#include "MidiTriggerNode.hpp"
-#include "MidiControlNode.hpp"
-#include "TransportNode.hpp"
+#include "InternalNote.hpp"
+#include "InternalTrigger.hpp"
+#include "InternalController.hpp"
+#include "InternalTransport.hpp"
#include "PatchImpl.hpp"
#include "InternalPlugin.hpp"
#ifdef HAVE_LADSPA
@@ -139,13 +139,13 @@ NodeFactory::load_internal_plugins()
PatchImpl* parent = new PatchImpl(*_world->local_engine, "dummy", 1, NULL, 1, 1, 1);
NodeImpl* n = NULL;
- n = new MidiNoteNode("foo", 1, parent, 1, 1);
+ n = new NoteNode("foo", 1, parent, 1, 1);
_plugins.insert(make_pair(n->plugin_impl()->uri(), n->plugin_impl()));
delete n;
- n = new MidiTriggerNode("foo", 1, parent, 1, 1);
+ n = new TriggerNode("foo", 1, parent, 1, 1);
_plugins.insert(make_pair(n->plugin_impl()->uri(), n->plugin_impl()));
delete n;
- n = new MidiControlNode("foo", 1, parent, 1, 1);
+ n = new ControllerNode("foo", 1, parent, 1, 1);
_plugins.insert(make_pair(n->plugin_impl()->uri(), n->plugin_impl()));
delete n;
n = new TransportNode("foo", 1, parent, 1, 1);