mirror of
https://github.com/outbackdingo/amnezia-client.git
synced 2026-01-27 02:18:09 +00:00
15 lines
228 B
C++
15 lines
228 B
C++
#ifndef ERRORSTRINGS_H
|
|
#define ERRORSTRINGS_H
|
|
|
|
#include <QDebug>
|
|
|
|
#include "defs.h"
|
|
|
|
using namespace amnezia;
|
|
|
|
QString errorString(ErrorCode code);
|
|
|
|
QDebug operator<<(QDebug debug, const ErrorCode &e);
|
|
|
|
#endif // ERRORSTRINGS_H
|