diff options
| author | David Skoland <davidskoland@gmail.com> | 2017-01-15 20:43:14 +0100 |
|---|---|---|
| committer | David Skoland <davidskoland@gmail.com> | 2017-01-15 20:43:14 +0100 |
| commit | f42417f9e287c772a14a9a637ebe3b06d6ef41f0 (patch) | |
| tree | 3fac3ee5696012eed0169421bbd779eb1ce371b4 /courtroom.h | |
| parent | ee0b796ff8841bfbaf1d414af76f32a328e2adc3 (diff) | |
added the courtroom class
Diffstat (limited to 'courtroom.h')
| -rw-r--r-- | courtroom.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/courtroom.h b/courtroom.h new file mode 100644 index 00000000..7edb4fca --- /dev/null +++ b/courtroom.h @@ -0,0 +1,19 @@ +#ifndef COURTROOM_H +#define COURTROOM_H + +#include <QMainWindow> + +class AOApplication; + +class Courtroom : public QMainWindow +{ + Q_OBJECT +public: + explicit Courtroom(AOApplication *parent = 0); + +signals: + +public slots: +}; + +#endif // COURTROOM_H |
