Initial structure. New abstract levels: dataobjecst, storage
[someplayer] / src / mainwindow.h
1 #ifndef MAINWINDOW_H
2 #define MAINWINDOW_H
3
4 #include <QMainWindow>
5 #include "player.h"
6
7 namespace Ui {
8         class MainWindow;
9 }
10
11 class MainWindow : public QMainWindow
12 {
13         Q_OBJECT
14
15 public:
16         explicit MainWindow(QWidget *parent = 0);
17         ~MainWindow();
18
19 private:
20         Ui::MainWindow *ui;
21         Player *player;
22
23 public slots:
24         void openMedia();
25 };
26
27 #endif // MAINWINDOW_H