diff --git a/lib/base/value-operators.cpp b/lib/base/value-operators.cpp index 11fdc9621..477076537 100644 --- a/lib/base/value-operators.cpp +++ b/lib/base/value-operators.cpp @@ -99,6 +99,12 @@ std::istream& icinga::operator>>(std::istream& stream, Value& value) return stream; } +Value& Value::operator=(const Value& other) +{ + m_Value = other.m_Value; + return *this; +} + bool Value::operator==(bool rhs) const { return *this == Value(rhs); diff --git a/lib/base/value.hpp b/lib/base/value.hpp index d0048c586..967a10ee1 100644 --- a/lib/base/value.hpp +++ b/lib/base/value.hpp @@ -111,6 +111,8 @@ public: operator double(void) const; operator String(void) const; + Value& operator=(const Value& other); + bool operator==(bool rhs) const; bool operator!=(bool rhs) const;