From f42417f9e287c772a14a9a637ebe3b06d6ef41f0 Mon Sep 17 00:00:00 2001 From: David Skoland Date: Sun, 15 Jan 2017 20:43:14 +0100 Subject: added the courtroom class --- courtroom.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 courtroom.h (limited to 'courtroom.h') 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 + +class AOApplication; + +class Courtroom : public QMainWindow +{ + Q_OBJECT +public: + explicit Courtroom(AOApplication *parent = 0); + +signals: + +public slots: +}; + +#endif // COURTROOM_H -- cgit