summaryrefslogtreecommitdiff
path: root/client/mainwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'client/mainwindow.h')
-rw-r--r--client/mainwindow.h6
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;