diff options
author | James Rowe <jroweboy@gmail.com> | 2018-01-11 20:33:56 -0700 |
---|---|---|
committer | James Rowe <jroweboy@gmail.com> | 2018-01-12 19:11:04 -0700 |
commit | 389979018cce654b1ade0161abfc627832afe592 (patch) | |
tree | 90536049d982e4f5ee1df984b1d9da52db704e95 /src/yuzu/configuration/configure_web.h | |
parent | 1d28b2e142f845773e2b90e267d9632e196a99b9 (diff) |
Remove gpu debugger and get yuzu qt to compile
Diffstat (limited to 'src/yuzu/configuration/configure_web.h')
-rw-r--r-- | src/yuzu/configuration/configure_web.h | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/src/yuzu/configuration/configure_web.h b/src/yuzu/configuration/configure_web.h deleted file mode 100644 index ad2d58f6e..000000000 --- a/src/yuzu/configuration/configure_web.h +++ /dev/null @@ -1,40 +0,0 @@ -// Copyright 2017 Citra Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. - -#pragma once - -#include <future> -#include <memory> -#include <QWidget> - -namespace Ui { -class ConfigureWeb; -} - -class ConfigureWeb : public QWidget { - Q_OBJECT - -public: - explicit ConfigureWeb(QWidget* parent = nullptr); - ~ConfigureWeb(); - - void applyConfiguration(); - -public slots: - void RefreshTelemetryID(); - void OnLoginChanged(); - void VerifyLogin(); - void OnLoginVerified(); - -signals: - void LoginVerified(); - -private: - void setConfiguration(); - - bool user_verified = true; - std::future<bool> verified; - - std::unique_ptr<Ui::ConfigureWeb> ui; -}; |