| 1234567891011121314151617181920 |
- #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;
- };
- QString getDecimalbit(double v,int i = 2);
- #endif // CACHEFILE_H
|