summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorljfa-ag <ljfa-ag@web.de>2015-07-03 16:43:40 +0200
committerljfa-ag <ljfa-ag@web.de>2015-07-03 16:43:40 +0200
commit33c26a33d1cf30f36c1d9c641f6ffc4dd77a5861 (patch)
tree0ead12e50f2c3f908b09dd8345a9b4259b5cc7be /include
parenta511f7fa197fa417646fa9852bf245b45fa17119 (diff)
downloadProject-Tick-33c26a33d1cf30f36c1d9c641f6ffc4dd77a5861.tar.gz
Project-Tick-33c26a33d1cf30f36c1d9c641f6ffc4dd77a5861.zip
Create and implement get/set with tag for value
Diffstat (limited to 'include')
-rw-r--r--include/value.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/value.h b/include/value.h
index 06f86e3a21..3b03cc0d43 100644
--- a/include/value.h
+++ b/include/value.h
@@ -55,10 +55,13 @@ public:
* of this value
*/
value& operator=(tag&& t);
+ void set(tag&& t);
//Conversion to tag
operator tag&();
operator const tag&() const;
+ tag& get();
+ const tag& get() const;
//Assignment of primitives and string
/**