Changeset 3150 for code/branches/pch/src/core
- Timestamp:
- Jun 12, 2009, 10:58:40 AM (15 years ago)
- Location:
- code/branches/pch/src/core
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pch/src/core/CommandLine.cc
r2759 r3150 30 30 31 31 #include <boost/filesystem.hpp> 32 33 #include "util/Exception.h" 32 34 #include "util/String.h" 33 35 #include "util/SubString.h" -
code/branches/pch/src/core/input/InputManager.cc
r3148 r3150 41 41 #include <ois/OISInputManager.h> 42 42 43 // HACK44 #ifdef ORXONOX_PLATFORM_LINUX45 # include <ois/linux/LinuxMouse.h>46 #endif47 48 43 #include "util/Exception.h" 49 44 #include "util/Debug.h" 50 #include "core/ConsoleCommand.h"51 45 #include "core/Clock.h" 52 46 #include "core/CoreIncludes.h" 53 47 #include "core/ConfigValueIncludes.h" 48 #include "core/ConsoleCommand.h" 54 49 #include "core/CommandLine.h" 55 50 … … 60 55 #include "ExtendedInputState.h" 61 56 #include "JoyStickDeviceNumberListener.h" 57 58 // HACK (include this as last, X11 seems to define some macros...) 59 #ifdef ORXONOX_PLATFORM_LINUX 60 # include <ois/linux/LinuxMouse.h> 61 #endif 62 62 63 63 namespace orxonox -
code/branches/pch/src/core/input/InputState.h
r3148 r3150 91 91 InputState() 92 92 : bHandlersChanged_(false) 93 , executorOnEnter_(0) 94 , executorOnLeave_(0) 93 95 , priority_(0) 94 96 , bAlwaysGetsInput_(false) 95 97 , bTransparent_(false) 96 , executorOnEnter_(0)97 , executorOnLeave_(0)98 98 { } 99 99 virtual ~InputState() { }
Note: See TracChangeset
for help on using the changeset viewer.