|
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 |
|
|---|
| 10 | using namespace mol;
|
|---|
| 11 |
|
|---|
| 12 | namespace i3
|
|---|
| 13 | {
|
|---|
| 14 |
|
|---|
| 15 | template <>
|
|---|
| 16 | CompletionWindowCore<CompletionWindow>::CompletionWindowCore(Mediator& mediator): mediator(mediator)
|
|---|
| 17 | {
|
|---|
| 18 | }
|
|---|
| 19 |
|
|---|
| 20 | template <>
|
|---|
| 21 | CompletionWindowCore<CompletionWindow>::~CompletionWindowCore()
|
|---|
| 22 | {
|
|---|
| 23 | }
|
|---|
| 24 |
|
|---|
| 25 | template <>
|
|---|
| 26 | void CompletionWindowCore<CompletionWindow>::createUI()
|
|---|
| 27 | {
|
|---|
| 28 | }
|
|---|
| 29 |
|
|---|
| 30 | template <>
|
|---|
| 31 | void CompletionWindowCore<CompletionWindow>::run()
|
|---|
| 32 | {
|
|---|
| 33 | createUI();
|
|---|
| 34 | loop();
|
|---|
| 35 | }
|
|---|
| 36 |
|
|---|
| 37 | }
|
|---|