Added an about dialog
[irwi] / src / aboutdlg.h
1 #ifndef ABOUTDLG_H
2 #define ABOUTDLG_H
3
4 #include <QDialog>
5
6 class QWidget;
7
8 class AboutDlg : public QDialog
9 {
10     Q_OBJECT
11 public:
12     AboutDlg(QWidget *parent);
13     ~AboutDlg();
14 };
15
16 #endif
17