| 204 | { |
| 205 | public: |
| 206 | progress_bar(std::string label, int total): |
| 207 | label_(std::move(label)), |
| 208 | total_(std::max(0, total)), |
| 209 | start_(clock_type::now()), |
| 210 | last_draw_(start_) |
| 211 | { |
| 212 | draw(0, true); |
| 213 | } |
| 214 | |
| 215 | void update(int current) |
| 216 | { |
nothing calls this directly
no outgoing calls
no test coverage detected