| 46 | class ScreenPrinter { |
| 47 | public: |
| 48 | ScreenPrinter(): |
| 49 | M_headless(!isatty(fileno(stdout))), |
| 50 | M_last(false) |
| 51 | {}; |
| 52 | void redraw(); |
| 53 | void print_closing_stats(); |
| 54 | void print_to_file(FILE* f); |
nothing calls this directly
no outgoing calls
no test coverage detected