Implement the assignment operator for the Value class

This commit is contained in:
Gunnar Beutner 2015-03-02 12:55:48 +01:00
parent bb393a9d4f
commit 4d25a2cb22
2 changed files with 8 additions and 0 deletions

View File

@ -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);

View File

@ -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;