Changeset 9659 for code/branches/core6/src/libraries/core/input
- Timestamp:
- Aug 18, 2013, 4:57:51 PM (11 years ago)
- Location:
- code/branches/core6/src/libraries/core/input
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core6/src/libraries/core/input/InputBuffer.cc
r9658 r9659 39 39 InputBuffer::InputBuffer() 40 40 { 41 Register RootObject(InputBuffer);41 RegisterObject(InputBuffer); 42 42 43 43 this->cursor_ = 0; … … 59 59 InputBuffer::InputBuffer(const std::string& allowedChars) 60 60 { 61 Register RootObject(InputBuffer);61 RegisterObject(InputBuffer); 62 62 63 63 this->maxLength_ = 1024; -
code/branches/core6/src/libraries/core/input/InputManager.cc
r9589 r9659 98 98 , calibratorCallbackHandler_(0) 99 99 { 100 Register RootObject(InputManager);100 RegisterObject(InputManager); 101 101 102 102 orxout(internal_status, context::input) << "InputManager: Constructing..." << endl; -
code/branches/core6/src/libraries/core/input/JoyStick.cc
r9559 r9659 51 51 : super(id, oisInputManager) 52 52 { 53 Register RootObject(JoyStick);53 RegisterObject(JoyStick); 54 54 this->setConfigValues(); 55 55 // Initialise POV and Slider states -
code/branches/core6/src/libraries/core/input/KeyBinder.cc
r9559 r9659 58 58 mousePosition_[1] = 0.0; 59 59 60 Register RootObject(KeyBinder);60 RegisterObject(KeyBinder); 61 61 62 62 // initialise all buttons and half axes to avoid creating everything with 'new' -
code/branches/core6/src/libraries/core/input/Mouse.cc
r8729 r9659 54 54 : super(id, oisInputManager) 55 55 { 56 Register RootObject(Mouse);56 RegisterObject(Mouse); 57 57 this->windowResized(this->getWindowWidth(), this->getWindowHeight()); 58 58
Note: See TracChangeset
for help on using the changeset viewer.