| 44 | } |
| 45 | |
| 46 | std::string doSomething(float f, double d) const override |
| 47 | { |
| 48 | assert(m_doSomethingImpl); |
| 49 | return m_doSomethingImpl(*this, f, d); |
| 50 | } |
| 51 | |
| 52 | protected: |
| 53 | bool validateValue(const std::string &t_val) override |
nothing calls this directly
no outgoing calls
no test coverage detected