mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-23 15:25:35 +08:00
30 lines
918 B
C++
30 lines
918 B
C++
// SPDX-FileCopyrightText: Copyright (C) 2018 swift Project Community / Contributors
|
|
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
|
|
|
|
#include "settingsmatchingdialog.h"
|
|
#include "ui_settingsmatchingdialog.h"
|
|
|
|
using namespace BlackMisc::Simulation;
|
|
|
|
namespace BlackGui::Components
|
|
{
|
|
CSettingsMatchingDialog::CSettingsMatchingDialog(QWidget *parent) : QDialog(parent),
|
|
ui(new Ui::CSettingsMatchingDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
CSettingsMatchingDialog::~CSettingsMatchingDialog()
|
|
{}
|
|
|
|
CAircraftMatcherSetup CSettingsMatchingDialog::getMatchingSetup() const
|
|
{
|
|
return ui->comp_Settings->getMatchingSetup();
|
|
}
|
|
|
|
void CSettingsMatchingDialog::setMatchingSetup(const CAircraftMatcherSetup &setup)
|
|
{
|
|
ui->comp_Settings->setMatchingSetup(setup);
|
|
}
|
|
} // ns
|