| 2879 | |
| 2880 | public: |
| 2881 | void print_progress() { |
| 2882 | std::lock_guard<std::mutex> lock{mutex_}; |
| 2883 | if (started_) |
| 2884 | move_up(count); |
| 2885 | for (auto &bar : bars_) { |
| 2886 | bar.get().print_progress(true); |
| 2887 | std::cout << "\n"; |
| 2888 | } |
| 2889 | std::cout << termcolor::reset; |
| 2890 | if (!started_) |
| 2891 | started_ = true; |
| 2892 | } |
| 2893 | }; |
| 2894 | |
| 2895 | } // namespace indicators |
nothing calls this directly
no test coverage detected