Import progress is shown while import.
parent
39ab4b74e2
commit
dbbf4a0a67
@ -0,0 +1,11 @@
|
||||
#ifndef IIMPORTPROGRESS_H
|
||||
#define IIMPORTPROGRESS_H
|
||||
|
||||
class IImportProgress
|
||||
{
|
||||
public:
|
||||
virtual void updateProgress(int currentPos) = 0;
|
||||
virtual bool terminate() = 0;
|
||||
};
|
||||
|
||||
#endif // IIMPORTPROGRESS_H
|
Loading…
Reference in New Issue