iVS3D v2.0.0
Loading...
Searching...
No Matches
about.h
1#ifndef ABOUT_H
2#define ABOUT_H
3
4#include <QDialog>
5
6namespace Ui {
7class About;
8}
9
23class About : public QDialog
24{
25 Q_OBJECT
26
27public:
28 explicit About(QWidget *parent = 0);
29 ~About();
30
31private:
32 Ui::About *ui;
33};
34
35#endif // ABOUT_H
The About class holds information about the authors and clients of this software.
Definition about.h:24