diff options
author | David Robillard <d@drobilla.net> | 2007-07-31 15:38:31 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-07-31 15:38:31 +0000 |
commit | e0efa719ab0872b852a1c50108b0b3ac73abb630 (patch) | |
tree | 2048caf0d6b02ee898783f6c37681f91496ad254 /src/libs/module/module.cpp | |
parent | 57cd2b32147e1b321f0569abd29f15cd7cf0184d (diff) | |
download | ingen-e0efa719ab0872b852a1c50108b0b3ac73abb630.tar.gz ingen-e0efa719ab0872b852a1c50108b0b3ac73abb630.tar.bz2 ingen-e0efa719ab0872b852a1c50108b0b3ac73abb630.zip |
First steps towards Ingen SWIG bindings.
git-svn-id: http://svn.drobilla.net/lad/ingen@661 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/module/module.cpp')
-rw-r--r-- | src/libs/module/module.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libs/module/module.cpp b/src/libs/module/module.cpp index 7584ebc7..4e342670 100644 --- a/src/libs/module/module.cpp +++ b/src/libs/module/module.cpp @@ -33,8 +33,9 @@ get_world() { if (!world) { world = new World(); + world->rdf_world = new Raul::RDF::World(); #ifdef HAVE_SLV2 - world->slv2_world = slv2_world_new_using_rdf_world(world->rdf_world.world()); + world->slv2_world = slv2_world_new_using_rdf_world(world->rdf_world->world()); slv2_world_load_all(world->slv2_world); #endif } @@ -49,7 +50,7 @@ destroy_world() #ifdef HAVE_SLV2 slv2_world_free(world->slv2_world); #endif - + delete world->rdf_world; delete world; world = NULL; } |