12 lines
215 B
C++
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
|