aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine/machina/Engine.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/machina/Engine.hpp')
-rw-r--r--src/engine/machina/Engine.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/engine/machina/Engine.hpp b/src/engine/machina/Engine.hpp
index d429df2..d8d16d9 100644
--- a/src/engine/machina/Engine.hpp
+++ b/src/engine/machina/Engine.hpp
@@ -31,13 +31,13 @@ class Machine;
class Engine {
public:
- Engine(SharedPtr<Driver> driver, Raul::RDF::World& rdf_world)
+ Engine(SharedPtr<Driver> driver, Redland::World& rdf_world)
: _driver(driver)
, _rdf_world(rdf_world)
, _loader(_rdf_world)
{ }
- Raul::RDF::World& rdf_world() { return _rdf_world; }
+ Redland::World& rdf_world() { return _rdf_world; }
SharedPtr<Driver> driver() { return _driver; }
SharedPtr<Machine> machine() { return _driver->machine(); }
@@ -51,7 +51,7 @@ public:
private:
SharedPtr<Driver> _driver;
- Raul::RDF::World& _rdf_world;
+ Redland::World& _rdf_world;
Loader _loader;
};