mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Add not equals operator to PdmDataValueField
This commit is contained in:
parent
914f946110
commit
92bcae2805
@ -94,7 +94,7 @@ public:
|
|||||||
const DataType& v() const { return m_fieldValue; }
|
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; }
|
||||||
|
bool operator!= (const DataType& fieldValue) const { return m_fieldValue != fieldValue; }
|
||||||
protected:
|
protected:
|
||||||
DataType m_fieldValue;
|
DataType m_fieldValue;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user