| 197 | //////////////////// ExecFunction |
| 198 | |
| 199 | class ExecFunction |
| 200 | { |
| 201 | public: |
| 202 | ExecFunction(); |
| 203 | virtual ~ExecFunction(); |
| 204 | |
| 205 | virtual void exec()=0; |
| 206 | }; |
| 207 | |
| 208 | class ExecFunctionWithoutParameters : public ExecFunction |
| 209 | { |
nothing calls this directly
no outgoing calls
no test coverage detected