aminnj / cpptqdm

(unofficial) tqdm-like single header c++ pretty progress bar
MIT License
203 stars 33 forks source link

finish message #5

Open xueyangcs opened 2 years ago

xueyangcs commented 2 years ago

print a message when finished void finish(std::string finishMessage = "") { progress(total_, total_); printf("%s\n", finishMessage.c_str()); fflush(stdout); }