summaryrefslogtreecommitdiffstats
path: root/raul
diff options
context:
space:
mode:
Diffstat (limited to 'raul')
-rw-r--r--raul/Atom.h3
-rw-r--r--raul/RDFModel.h2
2 files changed, 4 insertions, 1 deletions
diff --git a/raul/Atom.h b/raul/Atom.h
index cded253..2b9d800 100644
--- a/raul/Atom.h
+++ b/raul/Atom.h
@@ -32,6 +32,9 @@ namespace Raul {
*/
class Atom {
public:
+
+ //TODO: Add a bool type here that serializes nicely to Turtle "true" and "false"
+
enum Type {
NIL,
INT,
diff --git a/raul/RDFModel.h b/raul/RDFModel.h
index 576aec8..35910b5 100644
--- a/raul/RDFModel.h
+++ b/raul/RDFModel.h
@@ -41,7 +41,7 @@ public:
~Model();
void serialize_to_file_handle(FILE* fd);
- void serialize_to_file(const std::string& file);
+ void serialize_to_file(const Glib::ustring& uri);
std::string serialize_to_string();
void add_statement(const Node& subject,