13 lines
151 B
C++
13 lines
151 B
C++
#ifndef UTILS_H
|
|
#define UTILS_H
|
|
|
|
class QString;
|
|
|
|
class Utils
|
|
{
|
|
public:
|
|
static QString fileToString(const QString &filename);
|
|
};
|
|
|
|
#endif // UTILS_H
|