aboutsummaryrefslogtreecommitdiff
path: root/aoscene.h
blob: f62235f4911233fd623c4e3bd5803ae370533f11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef AOSCENE_H
#define AOSCENE_H

#include <QLabel>

class Courtroom;

class AOScene : public QLabel
{
  Q_OBJECT
public:
  explicit AOScene(Courtroom *parent);

  void set_image(QString p_image);

private:
  Courtroom *m_courtroom;

};

#endif // AOSCENE_H