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.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/libs/module/World.hpp b/src/libs/module/World.hpp
index f6c5a67a..eed98085 100644
--- a/src/libs/module/World.hpp
+++ b/src/libs/module/World.hpp
@@ -34,8 +34,12 @@ namespace Redland { class World; }
namespace Ingen {
class Engine;
+namespace Serialisation { class Serialiser; }
+using Serialisation::Serialiser;
+
namespace Shared {
class EngineInterface;
+class Store;
/** The "world" all Ingen modules may share.
@@ -58,6 +62,10 @@ struct World {
SharedPtr<EngineInterface> engine;
SharedPtr<Engine> local_engine;
+ SharedPtr<Serialiser> serialiser;
+ SharedPtr<Store> store;
+
+ SharedPtr<Glib::Module> serialisation_module;
};