]> git.treefish.org Git - phys/latlib.git/blob - progress.h
44b6f94a0a1193a4f6ae40765aaaa52a1c6a0fb9
[phys/latlib.git] / progress.h
1 #ifndef PROGRESS_H
2 #define PROGRESS_H
3
4 class progress
5 {
6  public:
7   progress(int a_realsteps, int a_progsteps=100);
8   bool madeStep( int realStep );
9   
10  private:
11   int realsteps;
12   int progsteps;
13   int laststep;
14 };
15
16 #endif