| 33 | } // namespace |
| 34 | |
| 35 | std::unique_ptr<Handler> MakeHandler(boost::signals2::connection connection) |
| 36 | { |
| 37 | return std::make_unique<HandlerImpl>(std::move(connection)); |
| 38 | } |
| 39 | |
| 40 | std::unique_ptr<Handler> MakeHandler(std::function<void()> cleanup) |
| 41 | { |
no outgoing calls
no test coverage detected