X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/c8b080defffe28f5fc1aa39447a467d8f7b7ee5c..afcbfd1a09e22ff4839ba5db42047c96f355506c:/include/stg/resetable.h diff --git a/include/stg/resetable.h b/include/stg/resetable.h index c78d0247..e7914efd 100644 --- a/include/stg/resetable.h +++ b/include/stg/resetable.h @@ -16,19 +16,7 @@ public: typedef T value_type; RESETABLE() : value(), is_set(false) {} - RESETABLE(const T & v) : value(v), is_set(true) {} - - RESETABLE(const RESETABLE & rvalue) - : value(rvalue.value), - is_set(rvalue.is_set) - {} - - RESETABLE & operator=(const RESETABLE & rhs) - { - value = rhs.value; - is_set = rhs.is_set; - return *this; - } + explicit RESETABLE(const T & v) : value(v), is_set(true) {} RESETABLE & operator=(const T & rhs) { @@ -42,6 +30,19 @@ public: const T & data() const throw() { return value; } bool empty() const throw() { return !is_set; } void reset() throw() { is_set = false; } + void splice(const RESETABLE & rhs) + { + if (rhs.is_set) + { + value = rhs.value; + is_set = true; + } + } + void maybeSet(value_type& dest) const + { + if (is_set) + dest = value; + } private: value_type value;