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