From 67ae45521b739e571cca27f3013b209d8a87b9dc Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Tue, 15 Feb 2011 11:11:48 -0500 Subject: [PATCH] PVStructure: implements method of SerializableArray without inheriting And the implementation is a noop... --- pvDataApp/factory/PVStructure.cpp | 5 ----- pvDataApp/pv/pvData.h | 2 -- 2 files changed, 7 deletions(-) diff --git a/pvDataApp/factory/PVStructure.cpp b/pvDataApp/factory/PVStructure.cpp index 64214d2..540785f 100644 --- a/pvDataApp/factory/PVStructure.cpp +++ b/pvDataApp/factory/PVStructure.cpp @@ -444,11 +444,6 @@ namespace epics { namespace pvData { } - void PVStructure::serialize(ByteBuffer *pbuffer, - SerializableControl *pflusher, int offset, int count) { - throw std::logic_error(notImplemented); - } - void PVStructure::serialize(ByteBuffer *pbuffer, SerializableControl *pflusher, BitSet *pbitSet) { int offset = getFieldOffset(); diff --git a/pvDataApp/pv/pvData.h b/pvDataApp/pv/pvData.h index c1a0089..22bade9 100644 --- a/pvDataApp/pv/pvData.h +++ b/pvDataApp/pv/pvData.h @@ -215,8 +215,6 @@ public: ByteBuffer *pbuffer,SerializableControl *pflusher) ; virtual void deserialize( ByteBuffer *pbuffer,DeserializableControl *pflusher); - virtual void serialize(ByteBuffer *pbuffer, - SerializableControl *pflusher, int offset, int count) ; virtual void serialize(ByteBuffer *pbuffer, SerializableControl *pflusher,BitSet *pbitSet) ; virtual void deserialize(ByteBuffer *pbuffer,