| 23 | } |
| 24 | |
| 25 | stream::~stream() |
| 26 | { |
| 27 | if (hook_) { |
| 28 | hook_->destroy(); |
| 29 | } |
| 30 | if (stream_) { |
| 31 | acl_vstream_free(stream_); |
| 32 | } |
| 33 | delete buf_; |
| 34 | delete dbuf_; |
| 35 | delete ctx_table_; |
| 36 | } |
| 37 | |
| 38 | string& stream::get_buf() |
| 39 | { |
nothing calls this directly
no test coverage detected