From f0e33dd09a390ca946e95a6f55fea397dca0ca1f Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 2 Jan 2021 18:17:04 +0100 Subject: Update for latest raul --- include/ingen/client/ClientStore.hpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'include/ingen/client/ClientStore.hpp') diff --git a/include/ingen/client/ClientStore.hpp b/include/ingen/client/ClientStore.hpp index b1d40881..3aec363f 100644 --- a/include/ingen/client/ClientStore.hpp +++ b/include/ingen/client/ClientStore.hpp @@ -28,9 +28,9 @@ #include #include -namespace Raul { +namespace raul { class Path; -} // namespace Raul +} // namespace raul namespace ingen { @@ -61,7 +61,7 @@ public: URI uri() const override { return URI("ingen:/clients/store"); } - std::shared_ptr object(const Raul::Path& path) const; + std::shared_ptr object(const raul::Path& path) const; std::shared_ptr plugin(const URI& uri) const; std::shared_ptr resource(const URI& uri) const; @@ -100,22 +100,22 @@ public: INGEN_SIGNAL(plugin_deleted, void, URI) private: - std::shared_ptr _object(const Raul::Path& path); + std::shared_ptr _object(const raul::Path& path); std::shared_ptr _plugin(const URI& uri); std::shared_ptr _plugin(const Atom& uri); std::shared_ptr _resource(const URI& uri); void add_object(const std::shared_ptr& object); - std::shared_ptr remove_object(const Raul::Path& path); + std::shared_ptr remove_object(const raul::Path& path); void add_plugin(const std::shared_ptr& pm); - std::shared_ptr connection_graph(const Raul::Path& tail_path, - const Raul::Path& head_path); + std::shared_ptr connection_graph(const raul::Path& tail_path, + const raul::Path& head_path); // Slots for SigClientInterface signals - bool attempt_connection(const Raul::Path& tail_path, - const Raul::Path& head_path); + bool attempt_connection(const raul::Path& tail_path, + const raul::Path& head_path); URIs& _uris; Log& _log; -- cgit v1.2.1