summaryrefslogtreecommitdiffstats
path: root/src/yuzu/compatdb.h
diff options
context:
space:
mode:
authorfearlessTobi <thm.frey@gmail.com>2018-10-26 16:21:45 +0200
committerfearlessTobi <thm.frey@gmail.com>2018-10-28 13:23:02 +0100
commit585b6a6a5037f9ef630a244ede18ac7854955fc6 (patch)
treeb075695e9eccd8324ef60558dd4dc1c7c62c2546 /src/yuzu/compatdb.h
parentMerge pull request #1596 from FearlessTobi/port-4367 (diff)
downloadyuzu-585b6a6a5037f9ef630a244ede18ac7854955fc6.tar
yuzu-585b6a6a5037f9ef630a244ede18ac7854955fc6.tar.gz
yuzu-585b6a6a5037f9ef630a244ede18ac7854955fc6.tar.bz2
yuzu-585b6a6a5037f9ef630a244ede18ac7854955fc6.tar.lz
yuzu-585b6a6a5037f9ef630a244ede18ac7854955fc6.tar.xz
yuzu-585b6a6a5037f9ef630a244ede18ac7854955fc6.tar.zst
yuzu-585b6a6a5037f9ef630a244ede18ac7854955fc6.zip
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();
};