Changeset 10380 for code/branches/core7/src/libraries/core/input
- Timestamp:
- Apr 22, 2015, 10:30:42 PM (10 years ago)
- Location:
- code/branches/core7/src/libraries/core/input
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core7/src/libraries/core/input/InputManager.cc
r10347 r10380 86 86 } 87 87 88 RegisterAbstractClass(InputManager).inheritsFrom<WindowEventListener>(); 89 88 90 // ############################################################ 89 91 // ##### Initialisation ##### -
code/branches/core7/src/libraries/core/input/JoyStickQuantityListener.cc
r9667 r10380 36 36 std::vector<JoyStick*> JoyStickQuantityListener::joyStickList_s; 37 37 38 RegisterAbstractClass(JoyStickQuantityListener).inheritsFrom<Listable>(); 39 38 40 JoyStickQuantityListener::JoyStickQuantityListener() 39 41 { -
code/branches/core7/src/libraries/core/input/KeyBinder.cc
r9667 r10380 43 43 namespace orxonox 44 44 { 45 RegisterAbstractClass(KeyBinder).inheritsFrom<JoyStickQuantityListener>(); 46 45 47 /** 46 48 @brief -
code/branches/core7/src/libraries/core/input/KeyBinderManager.cc
r10347 r10380 52 52 SetConsoleCommand(__CC_unbind_name, &KeyBinderManager::unbind).defaultValues(""); 53 53 SetConsoleCommand(__CC_tunbind_name, &KeyBinderManager::tunbind).defaultValues(""); 54 55 RegisterAbstractClass(KeyBinderManager).inheritsFrom<Configurable>(); 54 56 55 57 KeyBinderManager::KeyBinderManager() -
code/branches/core7/src/libraries/core/input/KeyDetector.cc
r10347 r10380 43 43 DeclareConsoleCommand(__CC_KeyDetector_callback_name, &prototype::void__string).hide(); 44 44 45 RegisterAbstractClass(KeyDetector).inheritsFrom<KeyBinder>(); 46 45 47 KeyDetector::KeyDetector() 46 48 : KeyBinder("") -
code/branches/core7/src/libraries/core/input/Mouse.cc
r10347 r10380 50 50 SetConsoleCommand(__CC_Mouse_name, __CC_ungrab_name, &Mouse::ungrab); 51 51 #endif 52 53 RegisterAbstractClass(Mouse).inheritsFrom<WindowEventListener>(); 52 54 53 55 Mouse::Mouse(unsigned int id, OIS::InputManager* oisInputManager)
Note: See TracChangeset
for help on using the changeset viewer.