| 83 | scale.run(); |
| 84 | } |
| 85 | void do_teardown() override |
| 86 | { |
| 87 | // Save the result to file: |
| 88 | if (!output_filename.empty()) |
| 89 | { |
| 90 | save_to_ppm(dst, output_filename); // save_to_ppm maps and unmaps the image to store as PPM |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | private: |
| 95 | Image src{}, dst{}; |
nothing calls this directly
no test coverage detected