2019-04-06 17:16:42 +02:00
|
|
|
#ifndef UTILS_H
|
|
|
|
#define UTILS_H
|
|
|
|
#include <QFile>
|
|
|
|
#include <QString>
|
|
|
|
#include <QByteArray>
|
2019-04-10 18:57:27 +02:00
|
|
|
#include <QTextStream>
|
2019-04-06 17:16:42 +02:00
|
|
|
#include "qssgeneralexception.h"
|
|
|
|
|
|
|
|
class Utils
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Utils();
|
|
|
|
static QByteArray readFile(QString path);
|
2019-04-10 18:57:27 +02:00
|
|
|
static QDebug &info();
|
|
|
|
static QDebug &error();
|
2019-04-06 17:16:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // UTILS_H
|