summaryrefslogtreecommitdiffstats
path: root/src/engine/events/DeactivateEvent.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/events/DeactivateEvent.hpp')
-rw-r--r--src/engine/events/DeactivateEvent.hpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/engine/events/DeactivateEvent.hpp b/src/engine/events/DeactivateEvent.hpp
index 5a6750ba..eaa7e9cb 100644
--- a/src/engine/events/DeactivateEvent.hpp
+++ b/src/engine/events/DeactivateEvent.hpp
@@ -19,6 +19,7 @@
#define DEACTIVATEEVENT_H
#include "QueuedEvent.hpp"
+#include "Engine.hpp"
namespace Ingen {
@@ -30,11 +31,14 @@ namespace Ingen {
class DeactivateEvent : public QueuedEvent
{
public:
- DeactivateEvent(Engine& engine, SharedPtr<Responder> responder, SampleCount timestamp);
+ DeactivateEvent(Engine& engine, SharedPtr<Responder> responder, SampleCount timestamp)
+ : QueuedEvent(engine, responder, timestamp)
+ {}
- void pre_process();
- void execute(ProcessContext& context);
- void post_process();
+ void post_process() {
+ _responder->respond_ok();
+ _engine.deactivate();
+ }
};