summaryrefslogtreecommitdiffstats
path: root/src/server/InternalBlock.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-12-08 15:28:51 +0100
committerDavid Robillard <d@drobilla.net>2019-12-08 20:59:06 +0100
commit1953452f3dc0c919b17f6f1ee555f5642480db44 (patch)
treed5d7b3c8a1af9bbb90a60868e76054383fa4e7fc /src/server/InternalBlock.cpp
parent07821c99f75c574bff76cb6c7ceefa4f3d597140 (diff)
downloadingen-1953452f3dc0c919b17f6f1ee555f5642480db44.tar.gz
ingen-1953452f3dc0c919b17f6f1ee555f5642480db44.tar.bz2
ingen-1953452f3dc0c919b17f6f1ee555f5642480db44.zip
Cleanup: Fix some includes and forward declarations
Diffstat (limited to 'src/server/InternalBlock.cpp')
-rw-r--r--src/server/InternalBlock.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/server/InternalBlock.cpp b/src/server/InternalBlock.cpp
index a1f5b5b1..298f5471 100644
--- a/src/server/InternalBlock.cpp
+++ b/src/server/InternalBlock.cpp
@@ -17,16 +17,31 @@
#include "InternalBlock.hpp"
#include "Buffer.hpp"
+#include "BufferFactory.hpp"
#include "Engine.hpp"
#include "InternalPlugin.hpp"
+#include "PluginImpl.hpp"
#include "PortImpl.hpp"
+#include "ingen/URIs.hpp"
+#include "raul/Array.hpp"
+
#include <cstddef>
#include <cstdint>
+namespace Raul {
+class Symbol;
+}
+
namespace ingen {
+
+class Atom;
+
namespace server {
+class GraphImpl;
+class RunContext;
+
InternalBlock::InternalBlock(PluginImpl* plugin,
const Raul::Symbol& symbol,
bool poly,