summaryrefslogtreecommitdiffstats
path: root/src/server/events/Move.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/events/Move.hpp')
-rw-r--r--src/server/events/Move.hpp13
1 files changed, 5 insertions, 8 deletions
diff --git a/src/server/events/Move.hpp b/src/server/events/Move.hpp
index c45c73aa..4e17033a 100644
--- a/src/server/events/Move.hpp
+++ b/src/server/events/Move.hpp
@@ -36,12 +36,10 @@ namespace Events {
class Move : public Event
{
public:
- Move(Engine& engine,
- SPtr<Interface> client,
- int32_t id,
- SampleCount timestamp,
- const Raul::Path& old_path,
- const Raul::Path& new_path);
+ Move(Engine& engine,
+ SPtr<Interface> client,
+ SampleCount timestamp,
+ const Ingen::Move& msg);
~Move();
@@ -51,8 +49,7 @@ public:
void undo(Interface& target);
private:
- const Raul::Path _old_path;
- const Raul::Path _new_path;
+ const Ingen::Move _msg;
};
} // namespace Events