summaryrefslogtreecommitdiffstats
path: root/src/client/ClientStore.cpp
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 /src/client/ClientStore.cpp
parentd2143bb3298d94ebef62ed50d377e89533a02b42 (diff)
downloadingen-f0e33dd09a390ca946e95a6f55fea397dca0ca1f.tar.gz
ingen-f0e33dd09a390ca946e95a6f55fea397dca0ca1f.tar.bz2
ingen-f0e33dd09a390ca946e95a6f55fea397dca0ca1f.zip
Update for latest raul
Diffstat (limited to 'src/client/ClientStore.cpp')
-rw-r--r--src/client/ClientStore.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/client/ClientStore.cpp b/src/client/ClientStore.cpp
index 9c577673..d8238c8a 100644
--- a/src/client/ClientStore.cpp
+++ b/src/client/ClientStore.cpp
@@ -100,7 +100,7 @@ ClientStore::add_object(const std::shared_ptr<ObjectModel>& object)
}
std::shared_ptr<ObjectModel>
-ClientStore::remove_object(const Raul::Path& path)
+ClientStore::remove_object(const raul::Path& path)
{
// Find the object, the "top" of the tree to remove
const iterator top = find(path);
@@ -163,7 +163,7 @@ ClientStore::plugin(const URI& uri) const
}
std::shared_ptr<ObjectModel>
-ClientStore::_object(const Raul::Path& path)
+ClientStore::_object(const raul::Path& path)
{
const iterator i = find(path);
if (i == end()) {
@@ -177,7 +177,7 @@ ClientStore::_object(const Raul::Path& path)
}
std::shared_ptr<const ObjectModel>
-ClientStore::object(const Raul::Path& path) const
+ClientStore::object(const raul::Path& path) const
{
return const_cast<ClientStore*>(this)->_object(path);
}
@@ -297,7 +297,7 @@ ClientStore::operator()(const Put& msg)
return;
}
- const Raul::Path path(uri_to_path(uri));
+ const raul::Path path(uri_to_path(uri));
auto obj = std::dynamic_pointer_cast<ObjectModel>(_object(path));
if (obj) {
@@ -369,7 +369,7 @@ ClientStore::operator()(const Delta& msg)
return;
}
- const Raul::Path path(uri_to_path(uri));
+ const raul::Path path(uri_to_path(uri));
std::shared_ptr<ObjectModel> obj = _object(path);
if (obj) {
@@ -413,8 +413,8 @@ ClientStore::operator()(const SetProperty& msg)
}
std::shared_ptr<GraphModel>
-ClientStore::connection_graph(const Raul::Path& tail_path,
- const Raul::Path& head_path)
+ClientStore::connection_graph(const raul::Path& tail_path,
+ const raul::Path& head_path)
{
std::shared_ptr<GraphModel> graph;
@@ -443,8 +443,8 @@ ClientStore::connection_graph(const Raul::Path& tail_path,
}
bool
-ClientStore::attempt_connection(const Raul::Path& tail_path,
- const Raul::Path& head_path)
+ClientStore::attempt_connection(const raul::Path& tail_path,
+ const raul::Path& head_path)
{
auto tail = std::dynamic_pointer_cast<PortModel>(_object(tail_path));
auto head = std::dynamic_pointer_cast<PortModel>(_object(head_path));