Move code into a subdir(/src)
[bootcreen] / src / bootscreenR.h
diff --git a/src/bootscreenR.h b/src/bootscreenR.h
new file mode 100644 (file)
index 0000000..b5b2cfd
--- /dev/null
@@ -0,0 +1,22 @@
+#include <QFile>
+#include <QTextStream>
+
+#ifndef BOOTSCREENR_H
+#define BOOTSCREENR_H
+
+class BootScreenR
+{
+
+public:
+    BootScreenR();
+    virtual ~BootScreenR();
+
+private:
+    void selectRandomFile();
+    QString settingsDir;
+    QFile settingsFile;
+    QFile logFile;
+    QList<QString> files;
+};
+
+#endif // BOOTSCREENR_H