1 2 3 4 5 6 7 8 9 10 11 12 13 14
#ifndef FILE_UTILS_H #define FILE_UTILS_H #include <QString> #include <stdexcept> class FileUtils { public: static QString loadFromFile(const QString& path); static void saveToFile(const QString& path, const QString& content); }; #endif // FILE_UTILS_H