Changeset 10992 for code/branches/cpp11_v2/src/libraries/core/input
- Timestamp:
- Dec 29, 2015, 5:16:28 PM (9 years ago)
- Location:
- code/branches/cpp11_v2/src/libraries/core/input
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v2/src/libraries/core/input/InputDevice.h
r10990 r10992 99 99 100 100 private: 101 // non-copyable: 101 102 InputDevice(const InputDevice&) = delete; 103 InputDevice& operator=(const InputDevice&) = delete; 102 104 103 105 bool bCalibrating_; //!< Whether the device is in calibration mode -
code/branches/cpp11_v2/src/libraries/core/input/InputManager.h
r10990 r10992 192 192 193 193 private: // functions 194 // non-copyable: 194 195 InputManager(const InputManager&) = delete; 196 InputManager& operator=(const InputManager&) = delete; 195 197 196 198 // Internal methods -
code/branches/cpp11_v2/src/libraries/core/input/KeyBinderManager.h
r10990 r10992 102 102 103 103 private: 104 // non-copyable: 104 105 KeyBinderManager(const KeyBinderManager&) = delete; 106 KeyBinderManager& operator=(const KeyBinderManager&) = delete; 107 105 108 void keybindInternal(const std::string& command, bool bTemporary); 106 109 void keybindKeyPressed(const std::string& keyName); -
code/branches/cpp11_v2/src/libraries/core/input/KeyDetector.h
r10990 r10992 48 48 49 49 private: 50 // non-copyable: 50 51 KeyDetector(const KeyDetector&) = delete; 52 KeyDetector& operator=(const KeyDetector&) = delete; 51 53 52 54 void callback(const std::string& name);
Note: See TracChangeset
for help on using the changeset viewer.