| 51 | class TChunkedInput::TImpl { |
| 52 | public: |
| 53 | inline TImpl(IInputStream* slave, TMaybe<THttpHeaders>* trailers) |
| 54 | : Slave_(slave) |
| 55 | , Trailers_(trailers) |
| 56 | , Pending_(0) |
| 57 | , LastChunkReaded_(false) |
| 58 | { |
| 59 | if (Trailers_) { |
| 60 | Trailers_->Clear(); |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | inline ~TImpl() { |
| 65 | } |