diff options
author | David Robillard <d@drobilla.net> | 2017-12-16 22:31:10 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2017-12-16 22:31:10 +0100 |
commit | 68901d7caa0636895de593e0b23cdec4fb53deaa (patch) | |
tree | 79fbfd567f2cc2b29ab225cec674127acb4d54d4 /ingen/client | |
parent | f2d3c77c9a470f20506c90098ab5cf4d3e5c9eff (diff) | |
download | ingen-68901d7caa0636895de593e0b23cdec4fb53deaa.tar.gz ingen-68901d7caa0636895de593e0b23cdec4fb53deaa.tar.bz2 ingen-68901d7caa0636895de593e0b23cdec4fb53deaa.zip |
Move sequence numbers into messages and simplify interfaces
Diffstat (limited to 'ingen/client')
-rw-r--r-- | ingen/client/ClientStore.hpp | 2 | ||||
-rw-r--r-- | ingen/client/SigClientInterface.hpp | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/ingen/client/ClientStore.hpp b/ingen/client/ClientStore.hpp index 899273dc..2724df9a 100644 --- a/ingen/client/ClientStore.hpp +++ b/ingen/client/ClientStore.hpp @@ -92,8 +92,6 @@ public: void operator()(const SetProperty&); void operator()(const Undo&) {} - void set_response_id(int32_t id) {} - INGEN_SIGNAL(new_object, void, SPtr<ObjectModel>); INGEN_SIGNAL(new_plugin, void, SPtr<PluginModel>); INGEN_SIGNAL(plugin_deleted, void, Raul::URI); diff --git a/ingen/client/SigClientInterface.hpp b/ingen/client/SigClientInterface.hpp index 2934e8b1..04af2dd9 100644 --- a/ingen/client/SigClientInterface.hpp +++ b/ingen/client/SigClientInterface.hpp @@ -54,8 +54,6 @@ public: virtual bool emit_signals() { return false; } protected: - void set_response_id(int32_t id) {} - void message(const Message& msg) override { _signal_message(msg); } |