looqs/shared/utils.h

18 行
266 B
C
Raw 通常表示 履歴

#ifndef UTILS_H
#define UTILS_H
#include <QFile>
#include <QString>
#include <QByteArray>
#include <QTextStream>
2019-04-16 08:53:23 +02:00
#include <QDebug>
2021-06-12 14:59:58 +02:00
#include "looqsgeneralexception.h"
class Utils
{
public:
Utils();
static QByteArray readFile(QString path);
};
#endif // UTILS_H