|
Revision 36327, 496 bytes
(checked in by saturday06, 3 years ago)
|
|
isisiisiisisisisiisisisisisisisisisisisisisisosiosoisoisoisio
|
| Line | |
|---|
| 1 | /**
|
|---|
| 2 | *
|
|---|
| 3 | */
|
|---|
| 4 |
|
|---|
| 5 | #pragma once
|
|---|
| 6 | #include "CompletionWindowPlatform.h"
|
|---|
| 7 |
|
|---|
| 8 | namespace i3 {
|
|---|
| 9 |
|
|---|
| 10 | class Mediator;
|
|---|
| 11 |
|
|---|
| 12 | class CompletionWindow :
|
|---|
| 13 | public CompletionWindowPlatform<CompletionWindow> {
|
|---|
| 14 | public:
|
|---|
| 15 |
|
|---|
| 16 | Mediator& mediator;
|
|---|
| 17 |
|
|---|
| 18 | CompletionWindow(Mediator& mediator);
|
|---|
| 19 | ~CompletionWindow();
|
|---|
| 20 |
|
|---|
| 21 | template <typename T> void execute(T& event);
|
|---|
| 22 | template <typename T> void beforeExecute(T& event) {}
|
|---|
| 23 | template <typename T> void afterExecute(T& event) {}
|
|---|
| 24 |
|
|---|
| 25 | protected:
|
|---|
| 26 | };
|
|---|
| 27 |
|
|---|
| 28 | }
|
|---|