root/lang/objective-cplusplus/i3/trunk/src/CompletionWindow.h @ 36381

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
8namespace i3 {
9
10class Mediator;
11
12class CompletionWindow :
13            public CompletionWindowPlatform<CompletionWindow> {
14public:
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
25protected:
26};
27
28}
Note: See TracBrowser for help on using the browser.