Main change is epicsBoolean=>bool
equuals => operator== Additional implementation in Convert.cpp
This commit is contained in:
@@ -33,7 +33,7 @@ namespace epics { namespace pvData {
|
||||
SerializableControl *pflusher, int offset, int count) ;
|
||||
virtual void toString(StringBuilder buf);
|
||||
virtual void toString(StringBuilder buf,int indentLevel);
|
||||
virtual epicsBoolean equals(PVField *pv) ;
|
||||
virtual bool operator==(PVField *pv) ;
|
||||
private:
|
||||
String *value;
|
||||
};
|
||||
@@ -145,7 +145,7 @@ namespace epics { namespace pvData {
|
||||
PVField::toString(buf,indentLevel);
|
||||
}
|
||||
|
||||
epicsBoolean BasePVStringArray::equals(PVField *pv)
|
||||
bool BasePVStringArray::operator==(PVField *pv)
|
||||
{
|
||||
return getConvert()->equals(this,pv);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user