summaryrefslogtreecommitdiffstats
path: root/src/server/JackDriver.hpp
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/JackDriver.hpp
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/JackDriver.hpp')
-rw-r--r--src/server/JackDriver.hpp15
1 files changed, 11 insertions, 4 deletions
diff --git a/src/server/JackDriver.hpp b/src/server/JackDriver.hpp
index 8f5cead5..d80463be 100644
--- a/src/server/JackDriver.hpp
+++ b/src/server/JackDriver.hpp
@@ -20,7 +20,9 @@
#include "Driver.hpp"
#include "EnginePort.hpp"
#include "ingen_config.h"
+#include "types.hpp"
+#include "ingen/URI.hpp"
#include "ingen/memory.hpp"
#include "lv2/atom/forge.h"
#include "raul/Semaphore.hpp"
@@ -28,6 +30,7 @@
#include <jack/jack.h>
#include <jack/thread.h>
#include <jack/transport.h>
+#include <jack/types.h>
#ifdef INGEN_JACK_SESSION
#include <jack/session.h>
#endif
@@ -38,16 +41,20 @@
#include <memory>
#include <string>
-namespace Raul { class Path; }
+namespace Raul {
+class Path;
+} // namespace Raul
namespace ingen {
+
+class Atom;
+
namespace server {
+class Buffer;
class DuplexPort;
class Engine;
-class GraphImpl;
-class JackDriver;
-class PortImpl;
+class RunContext;
/** The Jack Driver.
*