Files
GUI/src/errorhandle/GUIErrorFactory.h

12 lines
215 B
C
Raw Normal View History

2021-12-16 17:21:45 +08:00
#ifndef GUI_GUIERRORFACTORY_H
#define GUI_GUIERRORFACTORY_H
#include "GUIErrorBase.h"
class GUIErrorFactory {
public:
static GUIErrorBase* getError(const QString& errorMsg);
};
#endif //GUI_GUIERRORFACTORY_H