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
+2 -2
View File
@@ -26,7 +26,7 @@ namespace epics { namespace pvData {
DeserializableControl *pflusher);
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;
};
@@ -61,7 +61,7 @@ namespace epics { namespace pvData {
PVField::toString(buf,indentLevel);
}
epicsBoolean BasePVString::equals(PVField *pvField)
bool BasePVString::operator==(PVField *pvField)
{
return getConvert()->equals(this,pvField);
}