| 6497 | model(Fun const& fun) : fun(fun) {} |
| 6498 | |
| 6499 | model<Fun>* clone() const override { return new model<Fun>(*this); } |
| 6500 | |
| 6501 | void call(Chronometer meter) const override { |
| 6502 | call(meter, is_callable<Fun(Chronometer)>()); |
no outgoing calls
no test coverage detected