| 206 | |
| 207 | template <typename T> |
| 208 | void DataStreamBuffer::deserializeMapContainer(T& t, ByteArray data) { |
| 209 | DataStreamBuffer ds(std::move(data)); |
| 210 | ds.readMapContainer(t); |
| 211 | } |
| 212 | |
| 213 | template <typename T, typename ReadFunction> |
| 214 | void DataStreamBuffer::deserializeMapContainer(T& t, ByteArray data, ReadFunction readFunction) { |
nothing calls this directly
no test coverage detected