| 6711 | model(Fun const& fun) : fun(fun) {} |
| 6712 | |
| 6713 | model<Fun>* clone() const override { return new model<Fun>(*this); } |
| 6714 | |
| 6715 | void call(Chronometer meter) const override { |
| 6716 | call(meter, is_callable<Fun(Chronometer)>()); |
no outgoing calls
no test coverage detected