summaryrefslogtreecommitdiffstats
path: root/src/server/internals/Controller.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/internals/Controller.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/internals/Controller.cpp')
-rw-r--r--src/server/internals/Controller.cpp16
1 files changed, 13 insertions, 3 deletions
diff --git a/src/server/internals/Controller.cpp b/src/server/internals/Controller.cpp
index 22549ae4..12786dac 100644
--- a/src/server/internals/Controller.cpp
+++ b/src/server/internals/Controller.cpp
@@ -14,20 +14,27 @@
along with Ingen. If not, see <http://www.gnu.org/licenses/>.
*/
+#include "BlockImpl.hpp"
#include "Buffer.hpp"
-#include "Engine.hpp"
+#include "BufferFactory.hpp"
+#include "BufferRef.hpp"
#include "InputPort.hpp"
#include "InternalPlugin.hpp"
#include "OutputPort.hpp"
-#include "PostProcessor.hpp"
+#include "PortType.hpp"
#include "RunContext.hpp"
-#include "util.hpp"
+#include "ingen/Atom.hpp"
#include "ingen/Forge.hpp"
+#include "ingen/URI.hpp"
#include "ingen/URIs.hpp"
#include "internals/Controller.hpp"
+#include "lv2/atom/atom.h"
#include "lv2/atom/util.h"
#include "lv2/midi/midi.h"
+#include "raul/Array.hpp"
+#include "raul/Maid.hpp"
+#include "raul/Symbol.hpp"
#include <cassert>
#include <cmath>
@@ -36,6 +43,9 @@
namespace ingen {
namespace server {
+
+class GraphImpl;
+
namespace internals {
InternalPlugin* ControllerNode::internal_plugin(URIs& uris) {