dialogsysteminfo.h
Go to the documentation of this file.
1 /***************************************************************************
2  SocNetV: Social Network Visualizer
3  version: 3.1
4  Written in Qt
5 
6  dialogsysteminfo.h - description
7  -------------------
8  copyright : (C) 2005-2023 by Dimitris B. Kalamaras
9  email : dimitris.kalamaras@gmail.com
10  website: : http://dimitris.apeiro.gr
11  project site : https://socnetv.org
12 
13  ***************************************************************************/
14 
15 /*******************************************************************************
16 * This program is free software: you can redistribute it and/or modify *
17 * it under the terms of the GNU General Public License as published by *
18 * the Free Software Foundation, either version 3 of the License, or *
19 * (at your option) any later version. *
20 * *
21 * This program is distributed in the hope that it will be useful, *
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
24 * GNU General Public License for more details. *
25 * *
26 * You should have received a copy of the GNU General Public License *
27 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
28 ********************************************************************************/
29 
30 #ifndef DIALOGSYSTEMINFO_H
31 #define DIALOGSYSTEMINFO_H
32 
33 #include <QDialog>
34 #include "ui_dialogsysteminfo.h"
35 
36 class DialogSystemInfo: public QDialog
37 {
38  Q_OBJECT
39 public:
40  explicit DialogSystemInfo (QWidget *parent = Q_NULLPTR);
41 
42 private:
43  Ui::DialogSystemInfo *ui;
44 };
45 
46 
47 
48 #endif
Definition: dialogsysteminfo.h:37
Ui::DialogSystemInfo * ui
Definition: dialogsysteminfo.h:43
DialogSystemInfo(QWidget *parent=Q_NULLPTR)
Definition: dialogsysteminfo.cpp:51