ebdae19fd2
This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
29 lines
486 B
C++
29 lines
486 B
C++
// Copyright 2016 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class ConfigureDialog;
|
|
}
|
|
|
|
class ConfigureDialog : public QDialog {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ConfigureDialog(QWidget* parent);
|
|
~ConfigureDialog();
|
|
|
|
void applyConfiguration();
|
|
|
|
private:
|
|
void setConfiguration();
|
|
|
|
private:
|
|
std::unique_ptr<Ui::ConfigureDialog> ui;
|
|
};
|