| 114 | std::string container::id() const { return impl_->id(); } |
| 115 | |
| 116 | work_handle container::schedule(duration d, internal::v03::work f) { return impl_->schedule(d, f); } |
| 117 | work_handle container::schedule(duration d, internal::v11::work f) { return impl_->schedule(d, f); } |
| 118 | |
| 119 | work_handle container::schedule(duration d, void_function0& f) { return impl_->schedule(d, make_work(&void_function0::operator(), &f)); } |