aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine/machina/Loader.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-05-01 04:01:04 +0000
committerDavid Robillard <d@drobilla.net>2007-05-01 04:01:04 +0000
commitcfce5f86e3ce1572299bd62e7047e0cb985a4358 (patch)
treecb0768b308a20af399acecd7e6c12965fe1279ad /src/engine/machina/Loader.hpp
parentf11d9299afca21e52e0093784bed0b5ef8a506d0 (diff)
downloadmachina-cfce5f86e3ce1572299bd62e7047e0cb985a4358.tar.gz
machina-cfce5f86e3ce1572299bd62e7047e0cb985a4358.tar.bz2
machina-cfce5f86e3ce1572299bd62e7047e0cb985a4358.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/machina@486 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/machina/Loader.hpp')
-rw-r--r--src/engine/machina/Loader.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/engine/machina/Loader.hpp b/src/engine/machina/Loader.hpp
index af35c56..eb7deac 100644
--- a/src/engine/machina/Loader.hpp
+++ b/src/engine/machina/Loader.hpp
@@ -19,9 +19,9 @@
#define MACHINA_LOADER_HPP
#include <glibmm/ustring.h>
-#include "raul/SharedPtr.h"
-#include "raul/Path.h"
-#include "raul/Namespaces.h"
+#include <raul/SharedPtr.h>
+#include <raul/Path.h>
+#include <raul/RDFWorld.h>
using Raul::Namespaces;
@@ -32,12 +32,12 @@ class Machine;
class Loader {
public:
- Loader(SharedPtr<Namespaces> = SharedPtr<Namespaces>());
+ Loader(Raul::RDF::World& rdf_world);
SharedPtr<Machine> load(const Glib::ustring& filename);
private:
- SharedPtr<Namespaces> _namespaces;
+ Raul::RDF::World& _rdf_world;
};