summaryrefslogtreecommitdiffstats
path: root/ingen/client/ThreadedSigClientInterface.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2017-03-26 22:32:53 +0200
committerDavid Robillard <d@drobilla.net>2017-03-26 22:49:48 +0200
commitda33ac899a390ac13abbc6fba36d1b5c1d65d267 (patch)
tree887af451a7e9fe7d2d1aac076246b8d410747e9c /ingen/client/ThreadedSigClientInterface.hpp
parent09a0252c938fbdc3a0329520e78586432528eda9 (diff)
downloadingen-da33ac899a390ac13abbc6fba36d1b5c1d65d267.tar.gz
ingen-da33ac899a390ac13abbc6fba36d1b5c1d65d267.tar.bz2
ingen-da33ac899a390ac13abbc6fba36d1b5c1d65d267.zip
Add properties parameter to delete interfacenodeless
Diffstat (limited to 'ingen/client/ThreadedSigClientInterface.hpp')
-rw-r--r--ingen/client/ThreadedSigClientInterface.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/ingen/client/ThreadedSigClientInterface.hpp b/ingen/client/ThreadedSigClientInterface.hpp
index 219fd8d1..d9a88eee 100644
--- a/ingen/client/ThreadedSigClientInterface.hpp
+++ b/ingen/client/ThreadedSigClientInterface.hpp
@@ -94,8 +94,9 @@ public:
void connect(const Raul::Path& tail, const Raul::Path& head)
{ push_sig(sigc::bind(connection_slot, tail, head)); }
- void del(const Raul::URI& uri)
- { push_sig(sigc::bind(object_deleted_slot, uri)); }
+ void del(const Raul::URI& uri,
+ const Properties& properties = Properties())
+ { push_sig(sigc::bind(object_deleted_slot, uri, properties)); }
void move(const Raul::Path& old_path, const Raul::Path& new_path)
{ push_sig(sigc::bind(object_moved_slot, old_path, new_path)); }
@@ -165,7 +166,7 @@ private:
sigc::slot<void, URI, Properties, Graph> put_slot;
sigc::slot<void, URI, Properties, Properties, Graph> delta_slot;
sigc::slot<void, Path, Path> connection_slot;
- sigc::slot<void, URI> object_deleted_slot;
+ sigc::slot<void, URI, Properties> object_deleted_slot;
sigc::slot<void, Path, Path> object_moved_slot;
sigc::slot<void, URI, URI> object_copied_slot;
sigc::slot<void, Path, Path> disconnection_slot;