|
Revision 35976, 424 bytes
(checked in by saturday06, 4 years ago)
|
|
qwedrftgyhu
|
| Line | |
|---|
| 1 | #pragma once
|
|---|
| 2 |
|
|---|
| 3 | /**
|
|---|
| 4 | *
|
|---|
| 5 | */
|
|---|
| 6 |
|
|---|
| 7 | #include <mil/GuiModule.h>
|
|---|
| 8 | #include "Common.h"
|
|---|
| 9 | #include "OutputWindowPlatform.h"
|
|---|
| 10 |
|
|---|
| 11 | namespace i3 {
|
|---|
| 12 |
|
|---|
| 13 | class Mediator;
|
|---|
| 14 |
|
|---|
| 15 | class OutputWindow : public OutputWindowPlatform<OutputWindow> {
|
|---|
| 16 | public:
|
|---|
| 17 | Mediator& mediator;
|
|---|
| 18 |
|
|---|
| 19 | OutputWindow(Mediator& mediator);
|
|---|
| 20 | ~OutputWindow();
|
|---|
| 21 | void createUI();
|
|---|
| 22 | void run();
|
|---|
| 23 | template <typename T>
|
|---|
| 24 | void execute(T& event);
|
|---|
| 25 | };
|
|---|
| 26 |
|
|---|
| 27 | }
|
|---|
| 28 |
|
|---|