From fa6bb9afe8fcf2b0b8348495b9c4e1d6425136f0 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 15 Feb 2017 23:18:59 +0100 Subject: Move Properties out of Resource --- ingen/client/ThreadedSigClientInterface.hpp | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'ingen/client/ThreadedSigClientInterface.hpp') diff --git a/ingen/client/ThreadedSigClientInterface.hpp b/ingen/client/ThreadedSigClientInterface.hpp index 79795421..db3aad44 100644 --- a/ingen/client/ThreadedSigClientInterface.hpp +++ b/ingen/client/ThreadedSigClientInterface.hpp @@ -80,14 +80,14 @@ public: void error(const std::string& msg) { push_sig(sigc::bind(error_slot, msg)); } - void put(const Raul::URI& path, - const Resource::Properties& properties, - Resource::Graph ctx=Resource::Graph::DEFAULT) + void put(const Raul::URI& path, + const Properties& properties, + Resource::Graph ctx = Resource::Graph::DEFAULT) { push_sig(sigc::bind(put_slot, path, properties, ctx)); } - void delta(const Raul::URI& path, - const Resource::Properties& remove, - const Resource::Properties& add) + void delta(const Raul::URI& path, + const Properties& remove, + const Properties& add) { push_sig(sigc::bind(delta_slot, path, remove, add)); } void connect(const Raul::Path& tail, const Raul::Path& head) @@ -149,8 +149,7 @@ private: Raul::SRSWQueue _sigs; - typedef Resource::Properties Properties; - typedef Resource::Graph Graph; + typedef Resource::Graph Graph; sigc::slot bundle_begin_slot; sigc::slot bundle_end_slot; -- cgit v1.2.1