From ad07c414d557629251b2f4ea4078c22f241cc865 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 13 Feb 2010 22:07:26 +0000 Subject: Learn and remove bindings exclusively through property interface. Note this commit breaks some aspects of OSC and HTTP control for now. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2442 a436a847-0d15-0410-975c-d299462d15a1 --- src/client/ThreadedSigClientInterface.hpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/client/ThreadedSigClientInterface.hpp') diff --git a/src/client/ThreadedSigClientInterface.hpp b/src/client/ThreadedSigClientInterface.hpp index 128f6d86..bb86d65a 100644 --- a/src/client/ThreadedSigClientInterface.hpp +++ b/src/client/ThreadedSigClientInterface.hpp @@ -86,6 +86,10 @@ public: void put(const Raul::URI& path, const Shared::Resource::Properties& properties) { push_sig(sigc::bind(put_slot, path, properties)); } + void delta(const Raul::URI& path, + const Shared::Resource::Properties& remove, const Shared::Resource::Properties& add) + { push_sig(sigc::bind(delta_slot, path, remove, add)); } + void connect(const Raul::Path& src_port_path, const Raul::Path& dst_port_path) { push_sig(sigc::bind(connection_slot, src_port_path, dst_port_path)); } @@ -127,6 +131,8 @@ private: sigc::slot new_plugin_slot; sigc::slot new_port_slot; sigc::slot put_slot; + sigc::slot delta_slot; sigc::slot connection_slot; sigc::slot object_deleted_slot; sigc::slot object_moved_slot; -- cgit v1.2.1