summaryrefslogtreecommitdiffstats
path: root/src/server/PatchImpl.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-10-06 23:47:32 +0000
committerDavid Robillard <d@drobilla.net>2011-10-06 23:47:32 +0000
commit43f3bebb6faf2e065bf8f61b66a04ceabb0dd5e5 (patch)
treea1fb103b19003235fb770c88c977defec181904b /src/server/PatchImpl.cpp
parent9dd656d3403395cdef8191faabcab9a3478fc6ae (diff)
downloadingen-43f3bebb6faf2e065bf8f61b66a04ceabb0dd5e5.tar.gz
ingen-43f3bebb6faf2e065bf8f61b66a04ceabb0dd5e5.tar.bz2
ingen-43f3bebb6faf2e065bf8f61b66a04ceabb0dd5e5.zip
Tidy.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3536 a436a847-0d15-0410-975c-d299462d15a1
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)