summaryrefslogtreecommitdiffstats
path: root/raul/RDFNode.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-09-12 03:20:16 +0000
committerDavid Robillard <d@drobilla.net>2007-09-12 03:20:16 +0000
commitfda877003a1843ed53257f6e85123b0ef15b8f4f (patch)
tree0bbbd9124483185594969b6d507be351d5beffc6 /raul/RDFNode.hpp
parentb1d0c86db891dabb77fbc9655e7e5d5740ccf701 (diff)
downloadraul-fda877003a1843ed53257f6e85123b0ef15b8f4f.tar.gz
raul-fda877003a1843ed53257f6e85123b0ef15b8f4f.tar.bz2
raul-fda877003a1843ed53257f6e85123b0ef15b8f4f.zip
Const-correctness for Raul::RDF::Node type conversion functions.
git-svn-id: http://svn.drobilla.net/lad/raul@702 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'raul/RDFNode.hpp')
-rw-r--r--raul/RDFNode.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/raul/RDFNode.hpp b/raul/RDFNode.hpp
index 13326f7..c0ed669 100644
--- a/raul/RDFNode.hpp
+++ b/raul/RDFNode.hpp
@@ -62,14 +62,14 @@ public:
std::string to_string() const;
std::string to_quoted_uri_string() const;
- bool is_int();
- int to_int();
+ bool is_int() const;
+ int to_int() const;
- bool is_float();
- float to_float();
+ bool is_float() const;
+ float to_float() const;
- bool is_bool();
- float to_bool();
+ bool is_bool() const;
+ float to_bool() const;
private:
librdf_node* _node;