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