Add not equals operator to PdmDataValueField

This commit is contained in:
Gaute Lindkvist 2018-08-27 09:17:40 +02:00
parent 914f946110
commit 92bcae2805

View File

@ -94,7 +94,7 @@ public:
const DataType& v() const { return m_fieldValue; }
bool operator== (const DataType& fieldValue) const { return m_fieldValue == fieldValue; }
bool operator!= (const DataType& fieldValue) const { return m_fieldValue != fieldValue; }
protected:
DataType m_fieldValue;