| 221 | } |
| 222 | |
| 223 | void TArchiveWriter::AddSynonym(const TString& existingKey, const TString& newKey) { |
| 224 | Y_ENSURE(Impl_.Get(), "archive already closed"); |
| 225 | |
| 226 | Impl_->AddSynonym(existingKey, newKey); |
| 227 | } |
| 228 | |
| 229 | namespace { |
| 230 | class TArchiveInputStreamBase { |