mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-08 18:59:59 +00:00
20 lines
472 B
C++
20 lines
472 B
C++
// 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), group{group_} {
|
|
if (group != nullptr) {
|
|
group->push_front(this);
|
|
}
|
|
}
|
|
|
|
Tab::~Tab() = default;
|
|
|
|
} // namespace ConfigurationShared
|