summaryrefslogtreecommitdiffstats
path: root/src/engine/InternalPlugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/InternalPlugin.cpp')
-rw-r--r--src/engine/InternalPlugin.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/engine/InternalPlugin.cpp b/src/engine/InternalPlugin.cpp
index 6d070037..9f146068 100644
--- a/src/engine/InternalPlugin.cpp
+++ b/src/engine/InternalPlugin.cpp
@@ -17,10 +17,10 @@
#include <cassert>
#include "InternalPlugin.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 "Engine.hpp"
#include "AudioDriver.hpp"
@@ -39,11 +39,11 @@ InternalPlugin::instantiate(const string& name,
SampleCount buffer_size = engine.audio_driver()->buffer_size();
if (uri() == NS_INTERNALS "Note") {
- return new MidiNoteNode(name, polyphonic, parent, srate, buffer_size);
+ return new NoteNode(name, polyphonic, parent, srate, buffer_size);
} else if (uri() == NS_INTERNALS "Trigger") {
- return new MidiTriggerNode(name, polyphonic, parent, srate, buffer_size);
+ return new TriggerNode(name, polyphonic, parent, srate, buffer_size);
} else if (uri() == NS_INTERNALS "Controller") {
- return new MidiControlNode(name, polyphonic, parent, srate, buffer_size);
+ return new ControllerNode(name, polyphonic, parent, srate, buffer_size);
} else if (uri() == NS_INTERNALS "Transport") {
return new TransportNode(name, polyphonic, parent, srate, buffer_size);
} else {