summaryrefslogtreecommitdiffstats
path: root/src/engine/events/Disconnect.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/events/Disconnect.hpp')
-rw-r--r--src/engine/events/Disconnect.hpp17
1 files changed, 14 insertions, 3 deletions
diff --git a/src/engine/events/Disconnect.hpp b/src/engine/events/Disconnect.hpp
index d5b8b823..652fd4b5 100644
--- a/src/engine/events/Disconnect.hpp
+++ b/src/engine/events/Disconnect.hpp
@@ -45,11 +45,22 @@ namespace Events {
*
* \ingroup engine
*/
-class DisconnectionEvent : public QueuedEvent
+class Disconnect : public QueuedEvent
{
public:
- DisconnectionEvent(Engine& engine, SharedPtr<Responder> responder, SampleCount timestamp, const Raul::Path& src_port_path, const Raul::Path& dst_port_path);
- DisconnectionEvent(Engine& engine, SharedPtr<Responder> responder, SampleCount timestamp, PortImpl* const src_port, PortImpl* const dst_port);
+ Disconnect(
+ Engine& engine,
+ SharedPtr<Responder> responder,
+ SampleCount timestamp,
+ const Raul::Path& src_port_path,
+ const Raul::Path& dst_port_path);
+
+ Disconnect(
+ Engine& engine,
+ SharedPtr<Responder> responder,
+ SampleCount timestamp,
+ PortImpl* const src_port,
+ PortImpl* const dst_port);
void pre_process();
void execute(ProcessContext& context);