Files
DefaultVPN/client/core/errorstrings.h

15 lines
228 B
C
Raw Permalink 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
2021-05-10 02:33:31 +03:00
#include "defs.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