Main change is epicsBoolean=>bool

equuals => operator==
Additional implementation in Convert.cpp
This commit is contained in:
Marty Kraimer
2010-10-19 14:52:07 -04:00
parent 4b912a3c30
commit e5aac3b8e4
32 changed files with 689 additions and 160 deletions

View File

@@ -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);
}