Add first commit - Alpha Version
[vlc-remote] / configdialog.h
1 #ifndef CONFIGDIALOG_H
2 #define CONFIGDIALOG_H
3
4 #include <QDialog>
5
6 namespace Ui {
7     class ConfigDialog;
8 }
9
10 class ConfigDialog : public QDialog {
11     Q_OBJECT
12 public:
13     explicit ConfigDialog(QWidget *parent = 0);
14     ~ConfigDialog();
15 public slots:
16 void load();
17 void save();
18 protected:
19     void changeEvent(QEvent *e);
20
21 private:
22     Ui::ConfigDialog *ui;
23 };
24
25 #endif // CONFIGDIALOG_H