diff options
Diffstat (limited to 'src/libs/serialisation/Loader.hpp')
-rw-r--r-- | src/libs/serialisation/Loader.hpp | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/src/libs/serialisation/Loader.hpp b/src/libs/serialisation/Loader.hpp index a1d4e302..1f9328d2 100644 --- a/src/libs/serialisation/Loader.hpp +++ b/src/libs/serialisation/Loader.hpp @@ -25,6 +25,7 @@ #include <raul/Path.hpp> #include <raul/Table.hpp> #include "interface/GraphObject.hpp" +#include "module/World.hpp" namespace Redland { class World; } namespace Ingen { namespace Shared { class EngineInterface; } } @@ -39,14 +40,12 @@ class Loader { public: virtual ~Loader() {} - virtual bool - load(SharedPtr<Ingen::Shared::EngineInterface> engine, - Redland::World* world, - const Glib::ustring& uri, - boost::optional<Raul::Path> parent, - std::string patch_name, - Glib::ustring patch_uri = "", - GraphObject::Variables data = GraphObject::Variables()); + virtual bool load(Ingen::Shared::World* world, + const Glib::ustring& uri, + boost::optional<Raul::Path> parent, + std::string patch_name, + Glib::ustring patch_uri = "", + GraphObject::Variables data = GraphObject::Variables()); }; |