summaryrefslogtreecommitdiff
path: root/src/yuzu/compatdb.h
diff options
context:
space:
mode:
authorgreggameplayer <33609333+greggameplayer@users.noreply.github.com>2018-11-02 14:26:32 +0100
committerGitHub <noreply@github.com>2018-11-02 14:26:32 +0100
commitcb8e4a46330ca23496c3a77f42d9d16dc26e0dbe (patch)
treecedafffe5a605a1ed914e1d1df1267a3cd299fc9 /src/yuzu/compatdb.h
parent9ae972ab4e8279c2b471deb4e2fafb8e3f24a572 (diff)
parent1069eced8482bd01be9fd305447ef94a82c4c999 (diff)
Merge branch 'master' into Texture2DArray
Diffstat (limited to 'src/yuzu/compatdb.h')
-rw-r--r--src/yuzu/compatdb.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/yuzu/compatdb.h b/src/yuzu/compatdb.h
index ca0dd11d6..5381f67f7 100644
--- a/src/yuzu/compatdb.h
+++ b/src/yuzu/compatdb.h
@@ -5,6 +5,7 @@
#pragma once
#include <memory>
+#include <QFutureWatcher>
#include <QWizard>
namespace Ui {
@@ -19,8 +20,11 @@ public:
~CompatDB();
private:
+ QFutureWatcher<bool> testcase_watcher;
+
std::unique_ptr<Ui::CompatDB> ui;
void Submit();
+ void OnTestcaseSubmitted();
void EnableNext();
};