25 lines
345 B
C++
25 lines
345 B
C++
#ifndef ABOUTDIALOG_H
|
|
#define ABOUTDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class AboutDialog;
|
|
}
|
|
|
|
class AboutDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AboutDialog(QWidget *parent = 0);
|
|
~AboutDialog();
|
|
|
|
private:
|
|
Ui::AboutDialog *ui;
|
|
|
|
private slots:
|
|
void on_buttonBox_accepted();
|
|
};
|
|
|
|
#endif // ABOUTDIALOG_H
|