26 lines
296 B
C++
26 lines
296 B
C++
#ifndef ABOUTDLG_H
|
|
#define ABOUTDLG_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class AboutDlg;
|
|
}
|
|
|
|
class AboutDlg : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AboutDlg(QWidget *parent = 0);
|
|
~AboutDlg();
|
|
|
|
private:
|
|
Ui::AboutDlg *ui;
|
|
|
|
public slots:
|
|
void showLicense();
|
|
};
|
|
|
|
#endif // ABOUTDLG_H
|