settings and log directory changed
[bootcreen] / bootscreenR.h
1 #include <QFile>
2 #include <QTextStream>
3
4 #ifndef BOOTSCREENR_H
5 #define BOOTSCREENR_H
6
7 class BootScreenR
8 {
9
10 public:
11     BootScreenR();
12     virtual ~BootScreenR();
13
14 private:
15     void selectRandomFile();
16     QFile settingsFile;
17     QFile logFile;
18     QList<QString> files;
19 };
20
21 #endif // BOOTSCREENR_H