summaryrefslogtreecommitdiffstats
path: root/src/server/events/Disconnect.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/events/Disconnect.hpp')
-rw-r--r--src/server/events/Disconnect.hpp15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/server/events/Disconnect.hpp b/src/server/events/Disconnect.hpp
index 19ffcf3b..fa16f01f 100644
--- a/src/server/events/Disconnect.hpp
+++ b/src/server/events/Disconnect.hpp
@@ -33,7 +33,6 @@ namespace Server {
class CompiledGraph;
class InputPort;
-class OutputPort;
class PortImpl;
namespace Events {
@@ -61,19 +60,19 @@ public:
class Impl {
public:
- Impl(Engine& e,
- GraphImpl* graph,
- OutputPort* t,
- InputPort* h);
+ Impl(Engine& e,
+ GraphImpl* graph,
+ PortImpl* t,
+ InputPort* h);
bool execute(RunContext& context, bool set_head_buffers);
- inline OutputPort* tail() { return _tail; }
- inline InputPort* head() { return _head; }
+ inline PortImpl* tail() { return _tail; }
+ inline InputPort* head() { return _head; }
private:
Engine& _engine;
- OutputPort* _tail;
+ PortImpl* _tail;
InputPort* _head;
SPtr<ArcImpl> _arc;
Raul::Array<PortImpl::Voice>* _voices;