mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-05 14:57:53 +00:00
195cad9635
These slots are only ever attached to event handling mechanisms within the class itself, they're never used externally. Because of this, we can make the functions private. This also removes redundant usages of the private access specifier.
27 lines
491 B
C++
27 lines
491 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 ConfigureDebug;
|
|
}
|
|
|
|
class ConfigureDebug : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ConfigureDebug(QWidget* parent = nullptr);
|
|
~ConfigureDebug() override;
|
|
|
|
void applyConfiguration();
|
|
|
|
private:
|
|
void setConfiguration();
|
|
|
|
std::unique_ptr<Ui::ConfigureDebug> ui;
|
|
};
|