diff options
author | deva <deva> | 2006-04-14 14:37:56 +0000 |
---|---|---|
committer | deva <deva> | 2006-04-14 14:37:56 +0000 |
commit | afdd0a07be6a669cdd8343fc033f170395b470c0 (patch) | |
tree | f5422200c992ae43e9aef42136aab24578fbbfd0 /client/mainwindow.h | |
parent | e5dc1f42337228bf367ae8ea28469a8eef4861bd (diff) |
*** empty log message ***
Diffstat (limited to 'client/mainwindow.h')
-rw-r--r-- | client/mainwindow.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/client/mainwindow.h b/client/mainwindow.h index e3a4411..9425d40 100644 --- a/client/mainwindow.h +++ b/client/mainwindow.h @@ -33,6 +33,8 @@ #include "historyframe.h" #include "videowidget.h" +#include "decoder.h" + /** * Images */ @@ -56,7 +58,7 @@ class MainWindow : public QWidget { Q_OBJECT public: - MainWindow(); + MainWindow(Decoder *decoder); ~MainWindow(); QWidget *getVideoWidget() { return video; } @@ -71,6 +73,8 @@ public slots: void mute_clicked(); private: + Decoder *decoder; + HistoryFrame *history; VideoWidget *video; |