1 #ifndef PROGRESS_H
2 #define PROGRESS_H
3 
4 namespace progress
5 {
6 
7 extern bool stdout_is_tty;
8 extern bool silentMode;
9 
10 void init();
11 void init(const char *p_context);
12 void update(double offset, double refval, double curval);
13 void set_context_function(const char *(*func)(void) );
14 
15 }  // namespace progress
16 
17 #endif
18