| 91 | */ |
| 92 | |
| 93 | Deserializer::Deserializer(const Blob& blob) : |
| 94 | data_ { reinterpret_cast<const std::int8_t*>(blob.GetData()) }, |
| 95 | size_ { blob.GetSize() } |
| 96 | { |
| 97 | } |
| 98 | |
| 99 | Deserializer::Deserializer(const void* data, std::size_t size) : |
| 100 | data_ { reinterpret_cast<const std::int8_t*>(data) }, |