17 lines
296 B
C++
17 lines
296 B
C++
#ifndef GUI_GUIERRORHANDLE_H
|
|
#define GUI_GUIERRORHANDLE_H
|
|
|
|
#include <QObject>
|
|
class GUIErrorHandle: public QObject {
|
|
Q_OBJECT
|
|
public:
|
|
static GUIErrorHandle* Default(){
|
|
static GUIErrorHandle handle;
|
|
return &handle;
|
|
}
|
|
void init();
|
|
};
|
|
|
|
|
|
#endif //GUI_GUIERRORHANDLE_H
|