a complete set of tests for PVData now exists

This commit is contained in:
Marty Kraimer
2010-11-04 09:38:53 -04:00
parent 7f03a52200
commit 4f871aae05
55 changed files with 8326 additions and 1127 deletions

View File

@@ -33,8 +33,6 @@ namespace epics { namespace pvData {
virtual void deserialize(ByteBuffer *pbuffer,DeserializableControl *pflusher);
virtual void serialize(ByteBuffer *pbuffer,
SerializableControl *pflusher, int offset, int count) ;
virtual void toString(StringBuilder buf);
virtual void toString(StringBuilder buf,int indentLevel);
virtual bool operator==(PVField& pv) ;
virtual bool operator!=(PVField& pv) ;
private:
@@ -175,18 +173,6 @@ namespace epics { namespace pvData {
}
}
void BasePVBooleanArray::toString(StringBuilder buf)
{
toString(buf,1);
}
void BasePVBooleanArray::toString(StringBuilder buf,int indentLevel)
{
getConvert()->getString(buf,this,indentLevel);
PVField::toString(buf,indentLevel);
}
bool BasePVBooleanArray::operator==(PVField& pv)
{
return getConvert()->equals(this, &pv);