summaryrefslogtreecommitdiffstats
path: root/src/server/OutputPort.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/OutputPort.hpp')
-rw-r--r--src/server/OutputPort.hpp18
1 files changed, 17 insertions, 1 deletions
diff --git a/src/server/OutputPort.hpp b/src/server/OutputPort.hpp
index 0437c367..b19cd361 100644
--- a/src/server/OutputPort.hpp
+++ b/src/server/OutputPort.hpp
@@ -18,10 +18,26 @@
#define INGEN_ENGINE_OUTPUTPORT_HPP
#include "PortImpl.hpp"
+#include "PortType.hpp"
+
+#include <lv2/urid/urid.h>
+
+#include <cstddef>
+#include <cstdint>
+
+namespace raul {
+class Symbol;
+} // namespace raul
namespace ingen {
+
+class Atom;
+
namespace server {
+class BlockImpl;
+class BufferFactory;
+
/** An output port.
*
* Output ports always have a locally allocated buffer, and buffer() will
@@ -34,7 +50,7 @@ class OutputPort : public PortImpl
public:
OutputPort(BufferFactory& bufs,
BlockImpl* parent,
- const Raul::Symbol& symbol,
+ const raul::Symbol& symbol,
uint32_t index,
uint32_t poly,
PortType type,