-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathApplicationKernel.cpp
More file actions
24 lines (17 loc) · 858 Bytes
/
ApplicationKernel.cpp
File metadata and controls
24 lines (17 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include "ApplicationKernel.h"
#include "KeyboardHandlerAccess.h"
namespace NSApplication {
CApplicationKernel::CApplicationKernel() {
CKeyboardHandlerAccess KeyboardHandler;
KeyboardHandler->subscribeToKeyPressing(SeanceManager_->pressingInput());
KeyboardHandler->subscribeToKeyReleasing(SeanceManager_->releasingInput());
SeanceManager_->subscribeToCurrentSeance(SessionSelector_->seanceInput());
TextModule_->subscribeToTextData(AnalyticalModule_->textDataInput());
TextModule_->subscribeToTextData(KeySchemeModule_->textDataInput());
UserData_->subscribeToFingerLayout(KeySchemeModule_->fingerLayoutInput());
AnalyticalModule_->subscribeToAnalyticData(
StatisticsModule_->analyticDataInput());
LocalizationModule_->subscribeToStatisticsLocalizer(
StatisticsModule_->localizerInput());
}
} // namespace NSApplication