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