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