swift
settingsnetworkcomponent.cpp
1 // SPDX-FileCopyrightText: Copyright (C) 2015 swift Project Community / Contributors
2 // SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
3 
5 
6 #include <QCheckBox>
7 
8 #include "ui_settingsnetworkcomponent.h"
9 
11 #include "gui/guiapplication.h"
12 
13 using namespace swift::core;
14 
15 namespace swift::gui::components
16 {
17  CSettingsNetworkComponent::CSettingsNetworkComponent(QWidget *parent)
18  : QFrame(parent), ui(new Ui::CSettingsNetworkComponent)
19  {
20  ui->setupUi(this);
21  }
22 
24 } // namespace swift::gui::components
Backend services of the swift project, like dealing with the network or the simulators.
Definition: actionbind.cpp:7
High level reusable GUI components.
Definition: aboutdialog.cpp:13