diff options
Diffstat (limited to 'src/libs/client/Loader.h')
-rw-r--r-- | src/libs/client/Loader.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libs/client/Loader.h b/src/libs/client/Loader.h index 76a3e60c..371e7065 100644 --- a/src/libs/client/Loader.h +++ b/src/libs/client/Loader.h @@ -22,10 +22,9 @@ #include <glibmm/ustring.h> #include "raul/SharedPtr.h" #include "raul/Path.h" -#include "raul/Namespaces.h" #include "ObjectModel.h" -using Raul::Namespaces; +namespace Raul { namespace RDF { class World; } } namespace Ingen { namespace Client { @@ -37,9 +36,10 @@ class ModelEngineInterface; */ class Loader { public: - Loader(SharedPtr<ModelEngineInterface> engine, SharedPtr<Namespaces> = SharedPtr<Namespaces>()); + Loader(SharedPtr<ModelEngineInterface> engine, Raul::RDF::World* rdf_world); - bool load(const Glib::ustring& uri, + bool load(Raul::RDF::World* world, + const Glib::ustring& uri, boost::optional<Path> parent, string patch_name, Glib::ustring patch_uri = "", @@ -48,7 +48,7 @@ public: private: //string _patch_search_path; SharedPtr<ModelEngineInterface> _engine; - SharedPtr<Namespaces> _namespaces; + Raul::RDF::World* _rdf_world; }; |