Changeset 9589 for code/branches/core6/src/libraries/core/input
- Timestamp:
- Mar 26, 2013, 11:43:43 PM (12 years ago)
- Location:
- code/branches/core6/src/libraries/core/input
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core6/src/libraries/core/input/InputManager.cc
r9578 r9589 642 642 assert(state && this->activeStates_.find(state->getPriority()) == this->activeStates_.end()); 643 643 statesByName_.erase(state->getName()); 644 state->destroy();644 delete state; 645 645 } 646 646 -
code/branches/core6/src/libraries/core/input/JoyStickQuantityListener.h
r9563 r9589 38 38 39 39 #include <vector> 40 #include "core/ class/OrxonoxClass.h"40 #include "core/object/Listable.h" 41 41 42 42 namespace orxonox 43 43 { 44 44 //! Derive from this class to get informed when joy sticks get added/removed 45 class _CoreExport JoyStickQuantityListener : virtual public OrxonoxClass45 class _CoreExport JoyStickQuantityListener : virtual public Listable 46 46 { 47 47 friend class InputManager;
Note: See TracChangeset
for help on using the changeset viewer.