mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-16 13:50:07 +00:00
ebdae19fd2
This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
28 lines
482 B
C++
28 lines
482 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 <QWidget>
|
|
|
|
namespace Ui {
|
|
class ConfigureAudio;
|
|
}
|
|
|
|
class ConfigureAudio : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ConfigureAudio(QWidget* parent = nullptr);
|
|
~ConfigureAudio();
|
|
|
|
void applyConfiguration();
|
|
|
|
private:
|
|
void setConfiguration();
|
|
|
|
std::unique_ptr<Ui::ConfigureAudio> ui;
|
|
};
|