mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-23 07:15:35 +08:00
40 lines
932 B
C++
40 lines
932 B
C++
// SPDX-FileCopyrightText: Copyright (C) 2015 swift Project Community / Contributors
|
|
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
|
|
|
|
//! \file
|
|
|
|
#ifndef BLACKGUI_COMPONENTS_SETTINGSNETWORKCOMPONENT_H
|
|
#define BLACKGUI_COMPONENTS_SETTINGSNETWORKCOMPONENT_H
|
|
|
|
#include "blackgui/blackguiexport.h"
|
|
#include "blackcore/vatsim/vatsimsettings.h"
|
|
|
|
#include <QFrame>
|
|
#include <QObject>
|
|
#include <QScopedPointer>
|
|
|
|
namespace Ui
|
|
{
|
|
class CSettingsNetworkComponent;
|
|
}
|
|
namespace BlackGui::Components
|
|
{
|
|
//! General settings for network
|
|
class BLACKGUI_EXPORT CSettingsNetworkComponent : public QFrame
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
//! Constructor
|
|
explicit CSettingsNetworkComponent(QWidget *parent = nullptr);
|
|
|
|
//! Destructor
|
|
virtual ~CSettingsNetworkComponent();
|
|
|
|
private:
|
|
QScopedPointer<Ui::CSettingsNetworkComponent> ui;
|
|
};
|
|
} // ns
|
|
|
|
#endif // guard
|