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