Files
pilotclient/src/plugins/simulator/emulatedconfig/simulatoremulatedconfigwidget.h
Lars Toenning bcc4bdd31e Add SPDX identifiers for REUSE compliance
Co-authored-by: Mat Sutcliffe <oktal3700@gmail.com>
2023-10-03 09:29:49 +02:00

38 lines
944 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
//! \file
#ifndef BLACKSIMPLUGIN_EMULATED_SIMULATOREMULATEDCONFIGWIDGET_H
#define BLACKSIMPLUGIN_EMULATED_SIMULATOREMULATEDCONFIGWIDGET_H
#include <blackgui/pluginconfigwindow.h>
#include <QScopedPointer>
namespace Ui
{
class CSimulatorEmulatedConfigWidget;
}
namespace BlackSimPlugin::Emulated
{
/*!
* Configuration window for CSimulatorEmulatedConfig
*/
class Q_DECL_EXPORT CSimulatorEmulatedConfigWidget : public BlackGui::CPluginConfigWindow
{
Q_OBJECT
public:
//! Ctor
explicit CSimulatorEmulatedConfigWidget(QWidget *parent = nullptr);
//! Dtor
virtual ~CSimulatorEmulatedConfigWidget();
private:
QScopedPointer<Ui::CSimulatorEmulatedConfigWidget> ui;
};
} // ns
#endif // guard