diff options
author | David Robillard <d@drobilla.net> | 2007-05-01 04:01:04 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-05-01 04:01:04 +0000 |
commit | 3e5fef2e59776923f175a4260adf18c559ab861f (patch) | |
tree | 5c83291c595830ac472e5661de83d4560513a9d6 /src/libs/client/Loader.h | |
parent | 71b5ad39baceacb5d7aa75050fd8c76bfb16fb76 (diff) | |
download | ingen-3e5fef2e59776923f175a4260adf18c559ab861f.tar.gz ingen-3e5fef2e59776923f175a4260adf18c559ab861f.tar.bz2 ingen-3e5fef2e59776923f175a4260adf18c559ab861f.zip |
Converted Raul (and thus Ingen and Machina) to use Redland over Raptor/Rasqal independently.
Fixed patch loading for Ingen (local only, still something wrong with remote...).
git-svn-id: http://svn.drobilla.net/lad/ingen@486 a436a847-0d15-0410-975c-d299462d15a1
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; }; |