diff options
author | David Robillard <d@drobilla.net> | 2007-05-01 04:01:04 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-05-01 04:01:04 +0000 |
commit | 5f936c270bb8f8e449a7ca2daf50c164910339b8 (patch) | |
tree | c74b46bd52cff4b25c421b97cf7b032e2df5cbba /slv2/world.h | |
parent | 2afaf28258dc8b6546c6f1c762f0d401bb50b896 (diff) | |
download | lilv-5f936c270bb8f8e449a7ca2daf50c164910339b8.tar.gz lilv-5f936c270bb8f8e449a7ca2daf50c164910339b8.tar.bz2 lilv-5f936c270bb8f8e449a7ca2daf50c164910339b8.zip |
Converted Raul (and thus Ingen and Machina) to use Redland over Raptor/Rasqal independently.
Fixed patch loading for Ingen (local only, still something wrong with remote...).
git-svn-id: http://svn.drobilla.net/lad/slv2@486 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'slv2/world.h')
-rw-r--r-- | slv2/world.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/slv2/world.h b/slv2/world.h index 6cd1402..b5a4f30 100644 --- a/slv2/world.h +++ b/slv2/world.h @@ -21,6 +21,7 @@ #include <slv2/plugins.h> #include <slv2/pluginclasses.h> +#include <librdf.h> #ifdef __cplusplus extern "C" { @@ -52,6 +53,12 @@ SLV2World slv2_world_new(); +/** Initialize a new, empty world, using an existing Redland context. + */ +SLV2World +slv2_world_new_using_rdf_world(librdf_world* world); + + /** Destroy the world, mwahaha. * * NB: Destroying the world will leave dangling references in any plugin lists, |