| 48 | } |
| 49 | |
| 50 | static inline TString LoadStroka(IInputStream& input, size_t len) { |
| 51 | TString tmp; |
| 52 | |
| 53 | tmp.ReserveAndResize(len); |
| 54 | input.Load(tmp.begin(), tmp.size()); |
| 55 | |
| 56 | return tmp; |
| 57 | } |
| 58 | |
| 59 | struct TParts: public TVector<TPart> { |
| 60 | template <class T> |
no test coverage detected