Error handle

This commit is contained in:
Krad
2021-12-16 17:21:45 +08:00
parent 70e18d814b
commit 3815684039
7 changed files with 142 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
//
// Created by Krad on 2021/12/16.
//
#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