nsbaci 0.0
Loading...
Searching...
No Matches
dialog.h
Go to the documentation of this file.
1
7
8#ifndef DIALOG_H
9#define DIALOG_H
10
11#include <QDialog>
12
13namespace Ui {
14class Dialog;
15}
16
27class Dialog : public QDialog
28{
29 Q_OBJECT
30
31public:
36 explicit Dialog(QWidget *parent = nullptr);
37
41 ~Dialog();
42
43private:
44 Ui::Dialog *ui;
45};
46
47#endif // DIALOG_H
~Dialog()
Destroys the dialog and frees resources.
Definition dialog.cpp:30
Dialog(QWidget *parent=nullptr)
Constructs the dialog.
Definition dialog.cpp:18