twister-core/gui/include/aboutdialog.h

26 lines
345 B
C
Raw Normal View History

2011-05-08 20:23:31 +00:00
#ifndef ABOUTDIALOG_H
#define ABOUTDIALOG_H
#include <QDialog>
2011-05-12 15:55:24 +00:00
namespace Ui {
class AboutDialog;
}
2011-05-08 20:23:31 +00:00
class AboutDialog : public QDialog
{
Q_OBJECT
2011-05-12 15:55:24 +00:00
2011-05-08 20:23:31 +00:00
public:
explicit AboutDialog(QWidget *parent = 0);
2011-05-12 15:55:24 +00:00
~AboutDialog();
2011-05-08 20:23:31 +00:00
2011-05-12 15:55:24 +00:00
private:
Ui::AboutDialog *ui;
2011-05-08 20:23:31 +00:00
2011-05-12 15:55:24 +00:00
private slots:
void on_buttonBox_accepted();
2011-05-08 20:23:31 +00:00
};
#endif // ABOUTDIALOG_H