aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine/machina/Loader.hpp
diff options
context:
space:
mode:
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;
};