diff options
author | fearlessTobi <thm.frey@gmail.com> | 2018-10-26 16:21:45 +0200 |
---|---|---|
committer | fearlessTobi <thm.frey@gmail.com> | 2018-10-28 13:23:02 +0100 |
commit | 585b6a6a5037f9ef630a244ede18ac7854955fc6 (patch) | |
tree | b075695e9eccd8324ef60558dd4dc1c7c62c2546 /src/yuzu/compatdb.h | |
parent | a9dc34ea5c509d8dacafb747d2999bdbe802dc32 (diff) |
compatdb: Use a seperate endpoint for testcase submission
Diffstat (limited to 'src/yuzu/compatdb.h')
-rw-r--r-- | src/yuzu/compatdb.h | 4 |
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(); }; |