]> git.treefish.org Git - phys/latlib.git/blob - progress.h
...
[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