Files
GUI/src/errorhandle/GUIErrorFactory.h
2024-04-25 17:01:02 +08:00

12 lines
215 B
C++

#ifndef GUI_GUIERRORFACTORY_H
#define GUI_GUIERRORFACTORY_H
#include "GUIErrorBase.h"
class GUIErrorFactory {
public:
static GUIErrorBase* getError(const QString& errorMsg);
};
#endif //GUI_GUIERRORFACTORY_H