Will03uk
Will03uk

Reputation: 3444

Are there any text-based progress bar implementations?

I'm trying to create a terminal-based backup program and I'm looking for some C++ code that creates a text-based progress bar. I understand you can implement it yourself with \b but I thought I'd see if there is any well-built implementations already. My favourite implementation of a text-based progress bar is pacman's progress bar on arch linux.

My project is created with C++ (Qt4).

Upvotes: 5

Views: 924

Answers (1)

pmr
pmr

Reputation: 59841

The Boost Timer library has a progress timer display.

Upvotes: 3

Related Questions