summaryrefslogtreecommitdiffstats
path: root/include/ingen/client/ClientStore.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-01-02 18:17:04 +0100
committerDavid Robillard <d@drobilla.net>2021-01-02 18:17:04 +0100
commitf0e33dd09a390ca946e95a6f55fea397dca0ca1f (patch)
tree8d8befb3c7196ae119efc95ed6cdf2ba9cc00c32 /include/ingen/client/ClientStore.hpp
parentd2143bb3298d94ebef62ed50d377e89533a02b42 (diff)
downloadingen-f0e33dd09a390ca946e95a6f55fea397dca0ca1f.tar.gz
ingen-f0e33dd09a390ca946e95a6f55fea397dca0ca1f.tar.bz2
ingen-f0e33dd09a390ca946e95a6f55fea397dca0ca1f.zip
Update for latest raul
Diffstat (limited to 'include/ingen/client/ClientStore.hpp')
-rw-r--r--include/ingen/client/ClientStore.hpp18
1 files changed, 9 insertions, 9 deletions
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 <memory>
#include <utility>
-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<const ObjectModel> object(const Raul::Path& path) const;
+ std::shared_ptr<const ObjectModel> object(const raul::Path& path) const;
std::shared_ptr<const PluginModel> plugin(const URI& uri) const;
std::shared_ptr<const Resource> resource(const URI& uri) const;
@@ -100,22 +100,22 @@ public:
INGEN_SIGNAL(plugin_deleted, void, URI)
private:
- std::shared_ptr<ObjectModel> _object(const Raul::Path& path);
+ std::shared_ptr<ObjectModel> _object(const raul::Path& path);
std::shared_ptr<PluginModel> _plugin(const URI& uri);
std::shared_ptr<PluginModel> _plugin(const Atom& uri);
std::shared_ptr<Resource> _resource(const URI& uri);
void add_object(const std::shared_ptr<ObjectModel>& object);
- std::shared_ptr<ObjectModel> remove_object(const Raul::Path& path);
+ std::shared_ptr<ObjectModel> remove_object(const raul::Path& path);
void add_plugin(const std::shared_ptr<PluginModel>& pm);
- std::shared_ptr<GraphModel> connection_graph(const Raul::Path& tail_path,
- const Raul::Path& head_path);
+ std::shared_ptr<GraphModel> 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;