| 271 | TStore Data; |
| 272 | |
| 273 | inline TResponsePacket(const TString& guid, TStore& data) |
| 274 | : Guid(guid) |
| 275 | { |
| 276 | Data.swap(data); |
| 277 | } |
| 278 | |
| 279 | inline TResponsePacket(const TPacket& p) { |
| 280 | NPrivate::Deserialize(p, *this); |
nothing calls this directly
no test coverage detected