#ifndef CACHEFILE_H #define CACHEFILE_H #include class CacheFile { public: CacheFile(); bool writeFile(const QString & name, const QByteArray & data); QByteArray readFile(const QString & name); private: QDir dir; }; #endif // CACHEFILE_H