| 170 | } |
| 171 | |
| 172 | void process() |
| 173 | { |
| 174 | // Do our stuff if it makes sense - some objects may not |
| 175 | // even have a "processing" method |
| 176 | if_possible(implementation.effect()); |
| 177 | |
| 178 | // Then bang |
| 179 | output_setup.commit(implementation); |
| 180 | } |
| 181 | |
| 182 | template <typename V> |
| 183 | void process(V value) |
no test coverage detected