Adding HAM icon and bugtracker
[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     QString settingsDir;
17     QFile settingsFile;
18     QFile logFile;
19     QList<QString> files;
20 };
21
22 #endif // BOOTSCREENR_H