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