| 92 | } |
| 93 | |
| 94 | void DataHeader::Save(FileWriter & w) const |
| 95 | { |
| 96 | m_codingParams.Save(w); |
| 97 | |
| 98 | WriteVarInt(w, m_bounds.first); |
| 99 | WriteVarInt(w, m_bounds.second); |
| 100 | |
| 101 | SaveBytes(w, m_scales); |
| 102 | SaveBytes(w, m_langs); |
| 103 | |
| 104 | WriteVarInt(w, static_cast<int32_t>(m_type)); |
| 105 | } |
| 106 | |
| 107 | void DataHeader::Load(FilesContainerR const & cont) |
| 108 | { |
no test coverage detected