QCAD Application Framework
CAD Application Development and Automation.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
RProgressHandler.h
Go to the documentation of this file.
1 #ifndef RPROGRESSHANDLER_H
2 #define RPROGRESSHANDLER_H
3 
11 public:
13 
14  virtual void setProgress(int value) = 0;
15  virtual void setProgressEnd() = 0;
16  virtual void setProgressText(const QString& text = "") = 0;
17  virtual void setProgressEnabled(bool on) {
18  progressEnabled = on;
19  }
20 
21 protected:
23 };
24 
26 
27 #endif