16 γραμμές
227 B
C++
16 γραμμές
227 B
C++
#ifndef UTILS_H
|
|
#define UTILS_H
|
|
#include <QFile>
|
|
#include <QString>
|
|
#include <QByteArray>
|
|
#include "qssgeneralexception.h"
|
|
|
|
class Utils
|
|
{
|
|
public:
|
|
Utils();
|
|
static QByteArray readFile(QString path);
|
|
};
|
|
|
|
#endif // UTILS_H
|