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