From 43f3bebb6faf2e065bf8f61b66a04ceabb0dd5e5 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 6 Oct 2011 23:47:32 +0000 Subject: Tidy. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3536 a436a847-0d15-0410-975c-d299462d15a1 --- src/server/PatchImpl.cpp | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) (limited to 'src/server/PatchImpl.cpp') 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 #include #include + #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) -- cgit v1.2.1