diff options
Diffstat (limited to 'src/libs/module')
-rw-r--r-- | src/libs/module/World.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libs/module/World.hpp b/src/libs/module/World.hpp index eed98085..a1a0d5c7 100644 --- a/src/libs/module/World.hpp +++ b/src/libs/module/World.hpp @@ -34,8 +34,9 @@ namespace Redland { class World; } namespace Ingen { class Engine; -namespace Serialisation { class Serialiser; } +namespace Serialisation { class Serialiser; class Loader; } using Serialisation::Serialiser; +using Serialisation::Loader; namespace Shared { class EngineInterface; @@ -63,6 +64,7 @@ struct World { SharedPtr<EngineInterface> engine; SharedPtr<Engine> local_engine; SharedPtr<Serialiser> serialiser; + SharedPtr<Loader> loader; SharedPtr<Store> store; SharedPtr<Glib::Module> serialisation_module; |