aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine/Action.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-02-16 18:26:57 +0000
committerDavid Robillard <d@drobilla.net>2011-02-16 18:26:57 +0000
commit42d8a867c5523b0b45e8236a9629e5485d7d2e2a (patch)
tree806a19db3dc2daf6b104ebac66086c24e724fa88 /src/engine/Action.cpp
parentd1fc79afd2c670d95527145b59fb1be10070e02c (diff)
downloadmachina-42d8a867c5523b0b45e8236a9629e5485d7d2e2a.tar.gz
machina-42d8a867c5523b0b45e8236a9629e5485d7d2e2a.tar.bz2
machina-42d8a867c5523b0b45e8236a9629e5485d7d2e2a.zip
Drop redlandmm for sordmm.
git-svn-id: http://svn.drobilla.net/lad/trunk/machina@2959 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/Action.cpp')
-rw-r--r--src/engine/Action.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/engine/Action.cpp b/src/engine/Action.cpp
index 67a41c2..e77ae0e 100644
--- a/src/engine/Action.cpp
+++ b/src/engine/Action.cpp
@@ -15,21 +15,20 @@
* along with Machina. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "redlandmm/World.hpp"
-#include "redlandmm/Model.hpp"
+#include "sord/sordmm.hpp"
#include "Action.hpp"
namespace Machina {
void
-Action::write_state(Redland::Model& model)
+Action::write_state(Sord::Model& model)
{
using namespace Raul;
model.add_statement(rdf_id(model.world()),
- Redland::Node(model.world(), Redland::Node::RESOURCE, "rdf:type"),
- Redland::Node(model.world(), Redland::Node::RESOURCE, "machina:Action"));
+ Sord::Curie(model.world(), "rdf:type"),
+ Sord::Curie(model.world(), "machina:Action"));
}