4313469475
Shared_ptr has moved into the standard library since these tools were first written.
24 lines
534 B
C++
24 lines
534 B
C++
#ifndef BASE_PROGRESS_MONITOR_H
|
|
#define BASE_PROGRESS_MONITOR_H
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
namespace base {
|
|
class progress_monitor {
|
|
public:
|
|
virtual ~progress_monitor() {}
|
|
|
|
virtual void update_percent(unsigned) = 0;
|
|
};
|
|
|
|
std::unique_ptr<progress_monitor> create_progress_bar(std::string const &title);
|
|
std::unique_ptr<progress_monitor> create_quiet_progress_monitor();
|
|
}
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
#endif
|