Changeset 1646 for code/branches/gui/src/core/input/InputState.h
- Timestamp:
- Jul 24, 2008, 10:40:22 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/gui/src/core/input/InputState.h
r1642 r1646 51 51 52 52 public: 53 InputState() : priority_(0), executorOnEnter_(0), executorOnLeave_(0)54 { RegisterObject(InputState); }55 virtual ~InputState() { }56 57 53 const std::string& getName() const { return name_; } 58 54 int getPriority() const { return priority_; } … … 93 89 94 90 protected: 91 InputState() : priority_(0), executorOnEnter_(0), executorOnLeave_(0) 92 { RegisterObject(InputState); } 93 virtual ~InputState() { } 94 95 95 virtual void numberOfJoySticksChanged(unsigned int n) = 0; 96 96 void setInputDeviceEnabled(unsigned int device, bool bEnabled)
Note: See TracChangeset
for help on using the changeset viewer.