iVS3D v2.0.0
Loading...
Searching...
No Matches
licencedialog.h
1#ifndef LICENCEDIALOG_H
2#define LICENCEDIALOG_H
3
4#include <QDialog>
5
6namespace Ui {
7class LicenceDialog;
8}
9
23class LicenceDialog : public QDialog
24{
25 Q_OBJECT
26
27public:
28 explicit LicenceDialog(QWidget *parent = nullptr);
30
31private:
32 Ui::LicenceDialog *ui;
33};
34
35#endif // LICENCEDIALOG_H
The LicenceDialog class holds information about licences used in this project.
Definition licencedialog.h:24