aboutsummaryrefslogtreecommitdiff
path: root/aoscene.h
diff options
context:
space:
mode:
Diffstat (limited to 'aoscene.h')
-rw-r--r--aoscene.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/aoscene.h b/aoscene.h
index 37a3d0c..8c96445 100644
--- a/aoscene.h
+++ b/aoscene.h
@@ -4,18 +4,20 @@
#include <QLabel>
class Courtroom;
+class AOApplication;
class AOScene : public QLabel
{
Q_OBJECT
public:
- explicit AOScene(Courtroom *parent);
+ explicit AOScene(QWidget *parent, AOApplication *p_ao_app);
void set_image(QString p_image);
void set_legacy_desk(QString p_image);
private:
- Courtroom *m_courtroom;
+ QWidget *m_parent;
+ AOApplication *ao_app;
};