Changeset 1531 for code/branches/input/src/core
- Timestamp:
- Jun 4, 2008, 8:06:38 PM (17 years ago)
- Location:
- code/branches/input/src/core
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/input/src/core/Core.h
r1524 r1531 35 35 */ 36 36 37 #ifndef _Core Settings_H__38 #define _Core Settings_H__37 #ifndef _Core_H__ 38 #define _Core_H__ 39 39 40 40 #include "CorePrereqs.h" … … 75 75 } 76 76 77 #endif /* _Core Settings_H__ */77 #endif /* _Core_H__ */ -
code/branches/input/src/core/input/InputBuffer.cc
r1519 r1531 39 39 InputBuffer::InputBuffer() 40 40 { 41 Register Object(InputBuffer);41 RegisterRootObject(InputBuffer); 42 42 43 43 this->buffer_ = ""; … … 59 59 InputBuffer::InputBuffer(const std::string allowedChars) 60 60 { 61 Register Object(InputBuffer);61 RegisterRootObject(InputBuffer); 62 62 63 63 this->allowedChars_ = allowedChars; -
code/branches/input/src/core/input/InputManager.cc
r1524 r1531 69 69 keyboardModifiers_(0) 70 70 { 71 Register Object(InputManager);71 RegisterRootObject(InputManager); 72 72 } 73 73 -
code/branches/input/src/core/input/KeyBinder.cc
r1520 r1531 53 53 mousePosition_[1] = 0; 54 54 55 Register Object(KeyBinder);55 RegisterRootObject(KeyBinder); 56 56 57 57 // keys
Note: See TracChangeset
for help on using the changeset viewer.