diff options
Diffstat (limited to 'src/libs/engine/LV2Node.cpp')
-rw-r--r-- | src/libs/engine/LV2Node.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libs/engine/LV2Node.cpp b/src/libs/engine/LV2Node.cpp index d901176f..13b842de 100644 --- a/src/libs/engine/LV2Node.cpp +++ b/src/libs/engine/LV2Node.cpp @@ -21,13 +21,13 @@ #include <stdint.h> #include <cmath> #include <raul/Maid.hpp> -#include "LV2Node.hpp" -#include "InputPort.hpp" -#include "OutputPort.hpp" -#include "PluginImpl.hpp" #include "AudioBuffer.hpp" +#include "InputPort.hpp" +#include "LV2Node.hpp" +#include "LV2Plugin.hpp" #include "MidiBuffer.hpp" #include "OSCBuffer.hpp" +#include "OutputPort.hpp" #include "ProcessContext.hpp" using namespace std; @@ -40,7 +40,7 @@ namespace Ingen { * Object is not usable until instantiate() is called with success. * (It _will_ crash!) */ -LV2Node::LV2Node(PluginImpl* plugin, +LV2Node::LV2Node(LV2Plugin* plugin, const string& name, bool polyphonic, PatchImpl* parent, |