summaryrefslogtreecommitdiffstats
path: root/src/libs/module/World.hpp
diff options
context:
space:
mode:
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;
};