Files
amnezia-client/client/core/utils/errorStrings.h
T

15 lines
245 B
C++
Raw Normal View History

2021-01-06 17:12:24 +03:00
#ifndef ERRORSTRINGS_H
#define ERRORSTRINGS_H
2021-05-10 02:33:31 +03:00
#include <QDebug>
2021-01-06 17:12:24 +03:00
#include "core/utils/errorCodes.h"
2021-01-06 17:12:24 +03:00
2021-05-10 02:33:31 +03:00
using namespace amnezia;
2021-01-08 16:51:58 +03:00
2021-05-10 02:33:31 +03:00
QString errorString(ErrorCode code);
2021-01-06 17:12:24 +03:00
2021-05-10 02:33:31 +03:00
QDebug operator<<(QDebug debug, const ErrorCode &e);
2021-01-06 17:12:24 +03:00
#endif // ERRORSTRINGS_H