summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/events/EnablePortBroadcastingEvent.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/engine/events/EnablePortBroadcastingEvent.hpp')
-rw-r--r--src/libs/engine/events/EnablePortBroadcastingEvent.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libs/engine/events/EnablePortBroadcastingEvent.hpp b/src/libs/engine/events/EnablePortBroadcastingEvent.hpp
index 55f7decb..e24389cb 100644
--- a/src/libs/engine/events/EnablePortBroadcastingEvent.hpp
+++ b/src/libs/engine/events/EnablePortBroadcastingEvent.hpp
@@ -41,7 +41,8 @@ public:
EnablePortBroadcastingEvent(Engine& engine,
SharedPtr<Responder> responder,
SampleCount timestamp,
- const std::string& port_path);
+ const std::string& port_path,
+ bool enable);
void pre_process();
void execute(ProcessContext& context);
@@ -50,6 +51,7 @@ public:
private:
const std::string _port_path;
Port* _port;
+ bool _enable;
};