summaryrefslogtreecommitdiff
path: root/include/value.h
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2013-09-11 08:00:28 -0700
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2013-09-11 08:00:28 -0700
commit68fd128d82819db1022137a45ca3224cee8ef029 (patch)
tree6f01d5456d830de9d24150ec56e5c1ee4d464faa /include/value.h
parentf08f5850fa39c42974e12e42fa101ffe51eef594 (diff)
The environment object that is passed to functions now always is the same environment object, added move operator= to Value class to make moving zvals faster, and added request startup and request closedown methods
Diffstat (limited to 'include/value.h')
-rw-r--r--include/value.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/value.h b/include/value.h
index e4af1b7..4854437 100644
--- a/include/value.h
+++ b/include/value.h
@@ -124,6 +124,13 @@ public:
virtual Value &operator=(const Value &value);
/**
+ * Move assignment
+ * @param value
+ * @return Value
+ */
+ virtual Value &operator=(Value &&value);
+
+ /**
* Assignment operator
* @param value
* @return Value