summaryrefslogtreecommitdiffstats
path: root/src/server/PatchImpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/PatchImpl.cpp')
-rw-r--r--src/server/PatchImpl.cpp21
1 files changed, 12 insertions, 9 deletions
diff --git a/src/server/PatchImpl.cpp b/src/server/PatchImpl.cpp
index c99b0bb1..e253e7b3 100644
--- a/src/server/PatchImpl.cpp
+++ b/src/server/PatchImpl.cpp
@@ -18,19 +18,21 @@
#include <cassert>
#include <cmath>
#include <string>
+
#include "raul/log.hpp"
-#include "shared/World.hpp"
-#include "shared/LV2URIMap.hpp"
-#include "ThreadManager.hpp"
+
+#include "ConnectionImpl.hpp"
+#include "Driver.hpp"
+#include "DuplexPort.hpp"
+#include "Engine.hpp"
#include "NodeImpl.hpp"
#include "PatchImpl.hpp"
#include "PatchPlugin.hpp"
#include "PortImpl.hpp"
-#include "ConnectionImpl.hpp"
-#include "DuplexPort.hpp"
-#include "Engine.hpp"
#include "ProcessSlave.hpp"
-#include "Driver.hpp"
+#include "ThreadManager.hpp"
+#include "shared/LV2URIMap.hpp"
+#include "shared/World.hpp"
using namespace std;
using namespace Raul;
@@ -45,8 +47,9 @@ PatchImpl::PatchImpl(Engine& engine,
SampleRate srate,
uint32_t internal_poly)
: NodeImpl(new PatchPlugin(*engine.world()->uris().get(),
- engine.world()->uris()->ingen_Patch.c_str(), "patch", "Ingen Patch"),
- symbol, poly, parent, srate)
+ engine.world()->uris()->ingen_Patch.c_str(),
+ "patch", "Ingen Patch"),
+ symbol, poly, parent, srate)
, _engine(engine)
, _internal_poly(internal_poly)
, _compiled_patch(NULL)