13 lines
345 B
C++
13 lines
345 B
C++
#ifndef SUTILFUNCTION
|
|
#define SUTILFUNCTION
|
|
#include "sutilclass.h"
|
|
class QString;
|
|
|
|
void databaseSetting(const QString& str);
|
|
void messageBoxError(const QString& title, const QString &body);
|
|
QString errorCodeToString(E_ERROR_CODE _error_code);
|
|
E_ERROR_CODE strErrorCodeToEnumErrorCode(const QString& _str);
|
|
|
|
#endif // SUTILFUNCTION
|
|
|