blob: 88f62668dcfc9e8dc1e161792dc3cc78fd23b470 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// SPDX-FileCopyrightText: 2016 Citra Emulator Project & 2025 Citron Homebrew Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include <memory>
#include <vector>
#include <QString>
#include <QWidget>
#include <qobjectdefs.h>
class QObject;
namespace ConfigurationShared {
class Tab : public QWidget {
Q_OBJECT
public:
explicit Tab(std::shared_ptr<std::vector<Tab*>> group, QWidget* parent = nullptr);
~Tab();
virtual void ApplyConfiguration() = 0;
virtual void SetConfiguration() = 0;
};
} // namespace ConfigurationShared
|