From 2ba7b61143db7939201afa35328616edb2dc03b5 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 17 Dec 2010 19:41:56 +0000 Subject: Take RDF serialisation language as a parameter (rather than hardcoded "turtle"). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2753 a436a847-0d15-0410-975c-d299462d15a1 --- src/serialisation/Serialiser.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/serialisation') diff --git a/src/serialisation/Serialiser.cpp b/src/serialisation/Serialiser.cpp index a4ab5fa7..bc6b317a 100644 --- a/src/serialisation/Serialiser.cpp +++ b/src/serialisation/Serialiser.cpp @@ -226,9 +226,9 @@ Serialiser::finish() { string ret = ""; if (_mode == TO_FILE) { - _model->serialise_to_file(_base_uri); + _model->serialise_to_file(_base_uri, "turtle"); } else { - char* c_str = _model->serialise_to_string(); + char* c_str = _model->serialise_to_string("turtle"); if (c_str != NULL) { ret = c_str; free(c_str); -- cgit v1.2.1