qmlfrontend/runqueue.h
author alfadur
Tue, 06 Nov 2018 20:20:13 +0300
changeset 14146 4791c9a7d5e8
parent 14143 745c73e0e644
permissions -rw-r--r--
add more point operators

#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