aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine/Action.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-11-30 07:38:42 +0000
committerDavid Robillard <d@drobilla.net>2007-11-30 07:38:42 +0000
commitdbaf3eaff06b05fe8901bfe800c76435fc024e3c (patch)
tree64c328e0a8cfb7bdb4eed4937bc2705fe929a41f /src/engine/Action.cpp
parentb36e00c19a932b254f81e2fa71b808c440909739 (diff)
downloadmachina-dbaf3eaff06b05fe8901bfe800c76435fc024e3c.tar.gz
machina-dbaf3eaff06b05fe8901bfe800c76435fc024e3c.tar.bz2
machina-dbaf3eaff06b05fe8901bfe800c76435fc024e3c.zip
Split redland C++ wrappers out from Raul.
git-svn-id: http://svn.drobilla.net/lad/machina@927 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/Action.cpp')
-rw-r--r--src/engine/Action.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/engine/Action.cpp b/src/engine/Action.cpp
index 312bff6..7be3687 100644
--- a/src/engine/Action.cpp
+++ b/src/engine/Action.cpp
@@ -22,7 +22,7 @@
namespace Machina {
void
-Action::write_state(Raul::RDF::Model& model)
+Action::write_state(Redland::Model& model)
{
using namespace Raul;
@@ -30,8 +30,8 @@ Action::write_state(Raul::RDF::Model& model)
set_id(model.world().blank_id());
model.add_statement(_id,
- RDF::Node(model.world(), RDF::Node::RESOURCE, "rdf:type"),
- RDF::Node(model.world(), RDF::Node::RESOURCE, "machina:Action"));
+ Redland::Node(model.world(), Redland::Node::RESOURCE, "rdf:type"),
+ Redland::Node(model.world(), Redland::Node::RESOURCE, "machina:Action"));
}