add == for introspection; == of PVField is done in base class via convert.

Make monitorQueue compatible with monitor, i.e. shared_pointer
This commit is contained in:
Marty Kraimer
2011-04-27 08:27:10 -04:00
parent b45b965f14
commit 95ae684d3d
25 changed files with 157 additions and 181 deletions

View File

@@ -534,17 +534,6 @@ namespace epics { namespace pvData {
}
}
bool PVStructure::operator==(PVField &obj)
{
return getConvert()->equals(this,&obj);
}
bool PVStructure::operator!=(PVField &pv)
{
return !(getConvert()->equals(this,&pv));
}
static PVField *findSubField(String fieldName,PVStructure *pvStructure) {
if( fieldName.length()<1) return 0;
String::size_type index = fieldName.find('.');