#ifndef PROGRESS_H
#define PROGRESS_H

class progress
{
 public:
  progress(int a_realsteps, int a_progsteps=100);
  bool madeStep( int realStep );
  double done();
  
 private:
  int realsteps;
  int progsteps;
  int laststep;
};

#endif
