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-16 08:53:23 +02:00
|
|
|
#include <QDebug>
|
2021-06-12 14:59:58 +02:00
|
|
|
#include "looqsgeneralexception.h"
|
2019-04-06 17:16:42 +02:00
|
|
|
|
|
|
|
class Utils
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Utils();
|
|
|
|
static QByteArray readFile(QString path);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // UTILS_H
|