mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 23:05:36 +08:00
* Added plugin_fsx_config subproject * Removed CSettingsFsxComponent from BlackGui * Added CSimConnectSettingsComponent * Add x-plane_install_10.txt path for Windows
20 lines
411 B
C++
20 lines
411 B
C++
#include "simulatorfsxconfig.h"
|
|
#include "simulatorfsxconfigwindow.h"
|
|
|
|
namespace BlackSimPlugin
|
|
{
|
|
namespace Fsx
|
|
{
|
|
|
|
CSimulatorFsxConfig::CSimulatorFsxConfig(QObject *parent) : QObject(parent)
|
|
{
|
|
|
|
}
|
|
|
|
BlackGui::CPluginConfigWindow *CSimulatorFsxConfig::createConfigWindow(QWidget *parent)
|
|
{
|
|
return new CSimulatorFsxConfigWindow(parent);
|
|
}
|
|
}
|
|
}
|