Files
eden/src/yuzu/configuration/configuration_shared.cpp
T

20 lines
463 B
C++
Raw Normal View History

2022-05-15 02:06:02 +02:00
// SPDX-FileCopyrightText: 2016 Citra Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2023-05-05 23:30:59 -04:00
#include <memory>
2023-05-18 23:05:21 -04:00
#include <type_traits>
#include <vector>
#include "yuzu/configuration/configuration_shared.h"
2023-05-05 19:49:51 -04:00
namespace ConfigurationShared {
Tab::Tab(std::shared_ptr<std::vector<Tab*>> group, QWidget* parent) : QWidget(parent) {
2023-05-05 23:30:59 -04:00
if (group != nullptr) {
group->push_back(this);
2023-05-05 23:30:59 -04:00
}
}
2023-05-05 19:49:51 -04:00
2023-05-05 23:30:59 -04:00
Tab::~Tab() = default;
2023-05-05 19:49:51 -04:00
} // namespace ConfigurationShared