blob: e7d5e90f7d75e24590c12e6690f06a67c0dd9b02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// SPDX-FileCopyrightText: 2016 Citra Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#include <memory>
#include <type_traits>
#include <vector>
#include "citron/configuration/configuration_shared.h"
namespace ConfigurationShared {
Tab::Tab(std::shared_ptr<std::vector<Tab*>> group, QWidget* parent) : QWidget(parent) {
if (group != nullptr) {
group->push_back(this);
}
}
Tab::~Tab() = default;
} // namespace ConfigurationShared
|