blob: 76f0c27bbd6e1a4ec576ba289d2cc2c2e7ac8d8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef WAITPOPUP_H
#define WAITPOPUP_H
#include <qdialog.h>
class WaitPopup : public QDialog {
Q_OBJECT
public:
WaitPopup(QWidget *parent=0,const char* msg=0,bool dispIcon=TRUE);
~WaitPopup();
};
#endif
|