Field serialization moved to pvData

This commit is contained in:
Matej Sekoranja
2012-03-27 12:02:23 +02:00
parent c7beef6719
commit 21774ff01e
5 changed files with 53 additions and 125 deletions

View File

@@ -27,6 +27,12 @@ public:
void ensureBuffer(int size) {}
void alignBuffer(int alignment) {}
void flushSerializeBuffer() {}
void cachedSerialize(
const std::tr1::shared_ptr<const epics::pvData::Field>& field, epics::pvData::ByteBuffer* buffer)
{
// no cache
field->serialize(buffer, this);
}
};