f587fcd1b16cdf7345ac5b15f72b8c6859a2c340
[vlc-remote] / aboutdialog.h
1 #ifndef ABOUTDIALOG_H
2 #define ABOUTDIALOG_H
3
4 #include <QDialog>
5
6 namespace Ui {
7     class AboutDialog;
8 }
9
10 class AboutDialog : public QDialog {
11     Q_OBJECT
12 public:
13     explicit AboutDialog(QWidget *parent = 0);
14     ~AboutDialog();
15
16 protected:
17     void changeEvent(QEvent *e);
18
19 private:
20     Ui::AboutDialog *ui;
21 };
22
23 #endif // ABOUTDIALOG_H