| 136 | } |
| 137 | |
| 138 | class work_queue::impl* container::impl::make_work_queue(container& c) { |
| 139 | return c.impl_->add_work_queue(); |
| 140 | } |
| 141 | |
| 142 | container::impl::impl(container& c, const std::string& id, messaging_handler* mh) |
| 143 | : threads_(0), container_(c), proactor_(pn_proactor()), handler_(mh), id_(id), |
nothing calls this directly
no test coverage detected