qmlfrontend/runqueue.h
changeset 14154 8354b390f1a2
parent 14153 b273b43b16d2
child 14155 8f82d87d223f
--- a/qmlfrontend/runqueue.h	Wed Nov 07 15:55:32 2018 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,27 +0,0 @@
-#ifndef RUNQUEUE_H
-#define RUNQUEUE_H
-
-#include <QObject>
-
-#include "gameconfig.h"
-
-class RunQueue : public QObject {
-    Q_OBJECT
-public:
-    explicit RunQueue(QObject* parent = nullptr);
-
-    void queue(const GameConfig& config);
-
-signals:
-    void previewIsRendering();
-
-public slots:
-    void onGameFinished();
-
-private:
-    QList<GameConfig> m_runQueue;
-
-    void nextRun();
-};
-
-#endif // RUNQUEUE_H