From 5e3d6fd5cf29ce89741fdd5c61dfa62877d276d2 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 3 Aug 2020 12:34:15 +0200 Subject: Clean up includes As directed by include-what-you-use. Unfortunately, it is still confused by quite a few things, but this gets a lot closer to a clean report, and at least makes the output more tolerable to manually check. --- src/server/JackDriver.cpp | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'src/server/JackDriver.cpp') diff --git a/src/server/JackDriver.cpp b/src/server/JackDriver.cpp index 969961cd..e554c4e2 100644 --- a/src/server/JackDriver.cpp +++ b/src/server/JackDriver.cpp @@ -17,23 +17,31 @@ #include "JackDriver.hpp" #include "Buffer.hpp" +#include "BufferFactory.hpp" +#include "BufferRef.hpp" #include "DuplexPort.hpp" #include "Engine.hpp" #include "GraphImpl.hpp" -#include "PortImpl.hpp" +#include "PortType.hpp" +#include "RunContext.hpp" #include "ThreadManager.hpp" #include "ingen_config.h" #include "util.hpp" +#include "ingen/Atom.hpp" #include "ingen/Configuration.hpp" -#include "ingen/LV2Features.hpp" #include "ingen/Log.hpp" +#include "ingen/Properties.hpp" #include "ingen/URI.hpp" #include "ingen/URIMap.hpp" +#include "ingen/URIs.hpp" #include "ingen/World.hpp" #include "ingen/fmt.hpp" #include "ingen/memory.hpp" +#include "lv2/atom/atom.h" +#include "lv2/atom/forge.h" #include "lv2/atom/util.h" +#include "raul/Path.hpp" #include @@ -58,6 +66,9 @@ using jack_sample_t = jack_default_audio_sample_t; namespace ingen { + +class Node; + namespace server { JackDriver::JackDriver(Engine& engine) -- cgit v1.2.1