| 174 | |
| 175 | template <typename T> |
| 176 | ByteArray DataStreamBuffer::serializeMapContainer(T const& t) { |
| 177 | DataStreamBuffer ds; |
| 178 | ds.writeMapContainer(t); |
| 179 | return ds.takeData(); |
| 180 | } |
| 181 | |
| 182 | template <typename T, typename WriteFunction> |
| 183 | ByteArray DataStreamBuffer::serializeMapContainer(T const& t, WriteFunction writeFunction) { |
nothing calls this directly
no test coverage detected