diff options
author | David Robillard <d@drobilla.net> | 2019-03-09 17:44:36 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-12-12 19:42:09 +0100 |
commit | 3c0ed6b66b6e99c68fc01c86b5796a55d74a5977 (patch) | |
tree | 7be3252c13ef123b956424169c1bfbf55359564a /ingen/World.hpp | |
parent | e32f32a360f2bf8f017ea347b6d1e568c0beaf68 (diff) | |
download | ingen-3c0ed6b66b6e99c68fc01c86b5796a55d74a5977.tar.gz ingen-3c0ed6b66b6e99c68fc01c86b5796a55d74a5977.tar.bz2 ingen-3c0ed6b66b6e99c68fc01c86b5796a55d74a5977.zip |
WIP: Port to serd1serd1
Diffstat (limited to 'ingen/World.hpp')
-rw-r--r-- | ingen/World.hpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ingen/World.hpp b/ingen/World.hpp index a2906525..62d160b1 100644 --- a/ingen/World.hpp +++ b/ingen/World.hpp @@ -28,7 +28,7 @@ typedef struct LilvWorldImpl LilvWorld; -namespace Sord { class World; } +namespace serd { class World; class Env; } namespace ingen { @@ -49,7 +49,7 @@ class URIs; * * This is the root to which all components of Ingen are connected. It * contains all necessary shared data (including the world for libraries like - * Sord and Lilv) and holds references to components. + * Serd and Lilv) and holds references to components. * * Some functionality in Ingen is implemented in dynamically loaded modules, * which are loaded using this interface. When loaded, those modules add @@ -126,7 +126,8 @@ public: /** Lock for rdf_world() or lilv_world(). */ virtual std::mutex& rdf_mutex(); - virtual Sord::World* rdf_world(); + virtual serd::World& rdf_world(); + virtual serd::Env& env(); virtual LilvWorld* lilv_world(); virtual LV2Features& lv2_features(); |