Files
indicators/test/bar.cpp
Pranav Srinivas KumaR 2684cacd95 Updated bar example
2019-12-03 20:40:34 -06:00

42 lines
823 B
C++

#include <iostream>
#include <progress/bar.hpp>
int main() {
ProgressBar bar;
// Configure progress bar
bar.bar_width(50);
bar.start_with("[");
bar.fill_progress_with("");
bar.lead_progress_with("");
bar.fill_remainder_with("-");
bar.end_with(" ]");
// As configured, the bar will look like this:
//
// [■■■■■■■■■■■■■■■■■■■■ --------] 70%
//
//
auto job = [&bar]() {
while(true) {
if (bar.completed())
break;
bar.tick();
std::this_thread::sleep_for(std::chrono::milliseconds(100));
}
};
std::thread first_job(job);
std::thread second_job(job);
std::thread third_job(job);
std::thread last_job(job);
first_job.join();
second_job.join();
third_job.join();
last_job.join();
return 0;
}