diff options
Diffstat (limited to 'src/gui/RDFS.hpp')
-rw-r--r-- | src/gui/RDFS.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gui/RDFS.hpp b/src/gui/RDFS.hpp index 70c46a8e..4fac5546 100644 --- a/src/gui/RDFS.hpp +++ b/src/gui/RDFS.hpp @@ -62,11 +62,12 @@ Objects instances(World& world, const URISet& types); /** Get all the types which `model` is an instance of. */ URISet -types(World& world, std::shared_ptr<const client::ObjectModel> model); +types(World& world, const std::shared_ptr<const client::ObjectModel>& model); /** Get all the properties with domains appropriate for `model`. */ URISet -properties(World& world, std::shared_ptr<const client::ObjectModel> model); +properties(World& world, + const std::shared_ptr<const client::ObjectModel>& model); /** Return the range (value types) of `prop`. * @param recursive If true, include all subclasses. |