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

@@ -248,14 +248,4 @@ namespace epics { namespace pvData {
}
}
bool BasePVStructureArray::operator==(PVField &pvField)
{
return getConvert()->equals(this,&pvField);
}
bool BasePVStructureArray::operator!=(PVField &pvField)
{
return !(getConvert()->equals(this,&pvField));
}
}}