diff options
author | David Robillard <d@drobilla.net> | 2015-05-23 15:51:50 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-05-23 15:51:50 +0000 |
commit | e2349ae25fcc118cb558baf885757f1b473ad097 (patch) | |
tree | 23d3e01dd472c970eacd0f929f08fd8b13b97877 /ingen | |
parent | dc5c579778d8b7b6f113c48d202f89c172abd591 (diff) | |
download | ingen-e2349ae25fcc118cb558baf885757f1b473ad097.tar.gz ingen-e2349ae25fcc118cb558baf885757f1b473ad097.tar.bz2 ingen-e2349ae25fcc118cb558baf885757f1b473ad097.zip |
Fix partial commit.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5684 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ingen')
-rw-r--r-- | ingen/World.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ingen/World.hpp b/ingen/World.hpp index b2b31298..fc77593a 100644 --- a/ingen/World.hpp +++ b/ingen/World.hpp @@ -17,6 +17,7 @@ #ifndef INGEN_WORLD_HPP #define INGEN_WORLD_HPP +#include <mutex> #include <string> #include "ingen/ingen.h" @@ -123,6 +124,9 @@ public: virtual char**& argv(); virtual Configuration& conf(); + /** Lock for rdf_world() or lilv_world(). */ + virtual std::mutex& rdf_mutex(); + virtual Sord::World* rdf_world(); virtual LilvWorld* lilv_world(); |