mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 06:45:37 +08:00
20 lines
616 B
C++
20 lines
616 B
C++
// SPDX-FileCopyrightText: Copyright (C) 2017 swift Project Community / Contributors
|
|
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
|
|
|
|
#include "simulatormsfsconfig.h"
|
|
|
|
#include "../fsxcommon/simulatorfsxconfigwindow.h"
|
|
|
|
namespace swift::simplugin::msfs
|
|
{
|
|
CSimulatorMsfsConfig::CSimulatorMsfsConfig(QObject *parent) : QObject(parent)
|
|
{
|
|
// void
|
|
}
|
|
|
|
swift::gui::CPluginConfigWindow *CSimulatorMsfsConfig::createConfigWindow(QWidget *parent)
|
|
{
|
|
return new fsxcommon::CSimulatorFsxConfigWindow("MSFS", parent);
|
|
}
|
|
} // namespace swift::simplugin::msfs
|