summaryrefslogtreecommitdiffstats
path: root/src/libs/module/World.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-07-31 15:38:31 +0000
committerDavid Robillard <d@drobilla.net>2007-07-31 15:38:31 +0000
commite0efa719ab0872b852a1c50108b0b3ac73abb630 (patch)
tree2048caf0d6b02ee898783f6c37681f91496ad254 /src/libs/module/World.hpp
parent57cd2b32147e1b321f0569abd29f15cd7cf0184d (diff)
downloadingen-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/World.hpp')
-rw-r--r--src/libs/module/World.hpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/libs/module/World.hpp b/src/libs/module/World.hpp
index bb7ffe17..f665e6ad 100644
--- a/src/libs/module/World.hpp
+++ b/src/libs/module/World.hpp
@@ -32,6 +32,8 @@
namespace Ingen {
namespace Shared {
+class EngineInterface;
+
/** The "world" all Ingen modules may share.
*
@@ -47,7 +49,9 @@ struct World {
#ifdef HAVE_SLV2
SLV2World slv2_world;
#endif
- Raul::RDF::World rdf_world;
+ Raul::RDF::World* rdf_world;
+
+ EngineInterface* engine;
};