added operator!=

Convert.cpp almost done
This commit is contained in:
Marty Kraimer
2010-10-20 16:06:25 -04:00
parent f7c89f2ed9
commit e0ca45a028
22 changed files with 1834 additions and 22 deletions

View File

@@ -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 */