swift
corestatuscomponent.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 "ui_corestatuscomponent.h"
7 
8 class QWidget;
9 
10 namespace swift::gui::components
11 {
12  CCoreStatusComponent::CCoreStatusComponent(QWidget *parent) : QFrame(parent), ui(new Ui::CCoreStatusComponent)
13  {
14  ui->setupUi(this);
15  }
16 
18 
19 } // namespace swift::gui::components
Display status information about the core.
CCoreStatusComponent(QWidget *parent=nullptr)
Constructor.
High level reusable GUI components.
Definition: aboutdialog.cpp:13