root/lang/cplusplus/i3/src/gui-fltk/CompletionWindowCore.cpp @ 20479

Revision 20479, 0.6 kB (checked in by drry, 5 years ago)

!!!!!!!!1

Line 
1#include <PrecompiledHeaders.h>
2#include "CompletionWindow.h"
3#include "CompletionWindowCore.h"
4#include "Mediator.h"
5
6/**
7 *
8 */
9
10using namespace mol;
11
12namespace i3
13{
14
15template <>
16CompletionWindowCore<CompletionWindow>::CompletionWindowCore(Mediator& mediator): mediator(mediator)
17{
18}
19
20template <>
21CompletionWindowCore<CompletionWindow>::~CompletionWindowCore()
22{
23}
24
25template <>
26void CompletionWindowCore<CompletionWindow>::createUI()
27{
28}
29
30template <>
31void CompletionWindowCore<CompletionWindow>::run()
32{
33    createUI();
34    loop();
35}
36
37}
Note: See TracBrowser for help on using the browser.