summaryrefslogtreecommitdiffstats
path: root/src/server/LV2Block.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-08-03 12:34:15 +0200
committerDavid Robillard <d@drobilla.net>2020-08-03 12:34:15 +0200
commit5e3d6fd5cf29ce89741fdd5c61dfa62877d276d2 (patch)
tree8efa2c487c555850e61833b771cfc36056858975 /src/server/LV2Block.cpp
parent7f711e938900cc7ab714ebb5279d2312964a41b1 (diff)
downloadingen-5e3d6fd5cf29ce89741fdd5c61dfa62877d276d2.tar.gz
ingen-5e3d6fd5cf29ce89741fdd5c61dfa62877d276d2.tar.bz2
ingen-5e3d6fd5cf29ce89741fdd5c61dfa62877d276d2.zip
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.
Diffstat (limited to 'src/server/LV2Block.cpp')
-rw-r--r--src/server/LV2Block.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/server/LV2Block.cpp b/src/server/LV2Block.cpp
index fb1e3192..3d180360 100644
--- a/src/server/LV2Block.cpp
+++ b/src/server/LV2Block.cpp
@@ -15,6 +15,7 @@
*/
#include "Buffer.hpp"
+#include "BufferFactory.hpp"
#include "Engine.hpp"
#include "GraphImpl.hpp"
#include "InputPort.hpp"
@@ -22,20 +23,28 @@
#include "LV2Plugin.hpp"
#include "OutputPort.hpp"
#include "PortImpl.hpp"
+#include "PortType.hpp"
#include "RunContext.hpp"
#include "Worker.hpp"
+#include "ingen/Atom.hpp"
#include "ingen/FilePath.hpp"
#include "ingen/Forge.hpp"
#include "ingen/Log.hpp"
+#include "ingen/Resource.hpp"
#include "ingen/URI.hpp"
#include "ingen/URIMap.hpp"
#include "ingen/URIs.hpp"
#include "ingen/World.hpp"
+#include "lv2/core/lv2.h"
#include "lv2/options/options.h"
#include "lv2/state/state.h"
+#include "lv2/urid/urid.h"
+#include "lv2/worker/worker.h"
#include "raul/Array.hpp"
#include "raul/Maid.hpp"
+#include "raul/Path.hpp"
+#include "raul/Symbol.hpp"
#include <algorithm>
#include <cassert>