ProgressBar.h 601 B

123456789101112131415161718192021222324252627282930313233
  1. /**
  2. * @file ProgressBar.h
  3. * @brief Show a Progress-Bar with time estimation - threaded
  4. * @author Michael Koch
  5. * @date 25/03/2010
  6. */
  7. #ifndef ProgressBarINCLUDE
  8. #define ProgressBarINCLUDE
  9. #include <qthread.h>
  10. #include <iostream>
  11. #include <string>
  12. #include "vislearning/baselib/ProgressBarQt.h"
  13. namespace OBJREC
  14. {
  15. /** @brief show a Progress-Bar with time estimation */
  16. class ProgressBar: public QThread, public ProgressBarQt
  17. {
  18. public:
  19. ProgressBar ( std::string a = "ProgressBar" );
  20. /** simple destructor */
  21. virtual ~ProgressBar();
  22. virtual void run();
  23. private:
  24. };
  25. }
  26. #endif