added operator!=
Convert.cpp almost done
This commit is contained in:
@@ -34,6 +34,7 @@ namespace epics { namespace pvData {
|
||||
virtual void toString(StringBuilder buf);
|
||||
virtual void toString(StringBuilder buf,int indentLevel);
|
||||
virtual bool operator==(PVField *pv) ;
|
||||
virtual bool operator!=(PVField *pv) ;
|
||||
private:
|
||||
String *value;
|
||||
};
|
||||
@@ -149,5 +150,10 @@ namespace epics { namespace pvData {
|
||||
{
|
||||
return getConvert()->equals(this,pv);
|
||||
}
|
||||
|
||||
bool BasePVStringArray::operator!=(PVField *pv)
|
||||
{
|
||||
return !(getConvert()->equals(this,pv));
|
||||
}
|
||||
}}
|
||||
#endif /* BASEPVSTRINGARRAY_H */
|
||||
|
||||
Reference in New Issue
Block a user