23 lines
243 B
C
Raw Normal View History

2018-06-03 13:49:35 +03:00
#ifndef ABOUT_H
#define ABOUT_H
2018-06-03 15:37:16 +03:00
#include <QDialog>
2018-06-03 13:49:35 +03:00
namespace Ui {
class About;
}
2018-06-03 15:37:16 +03:00
class About : public QDialog
2018-06-03 13:49:35 +03:00
{
Q_OBJECT
public:
explicit About(QWidget *parent = 0);
~About();
private:
Ui::About *ui;
};
#endif // ABOUT_H