Attach an input buffer for the duration of current deserialization call.
| 439 | |
| 440 | /// Attach an input buffer for the duration of current deserialization call. |
| 441 | inline void attach(Buffer &buffer) { buffer_ = &buffer; } |
| 442 | |
| 443 | /// Detach the buffer after deserialization is complete. |
| 444 | inline void detach() { buffer_ = nullptr; } |
no outgoing calls