Files
pilotclient/src/blackgui/components/settingsnetworkcomponent.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

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