Changeset 1645 for code/branches/gui/src/core
- Timestamp:
- Jul 23, 2008, 7:31:40 PM (16 years ago)
- Location:
- code/branches/gui/src/core
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/gui/src/core/CMakeLists.txt
r1638 r1645 57 57 ADD_CUSTOM_COMMAND( 58 58 OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}/tolua/tolua_bind.cc 59 COMMAND ${TOLUA_EXE} -n core -o ../../src/core/tolua/tolua_bind.cc -H ../../src/core/tolua/tolua_bind.h ../../src/core/tolua/tolua.pkg59 COMMAND ${TOLUA_EXE} -n Core -o ../../src/core/tolua/tolua_bind.cc -H ../../src/core/tolua/tolua_bind.h ../../src/core/tolua/tolua.pkg 60 60 DEPENDS tolua 61 61 WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/bin/lib -
code/branches/gui/src/core/Exception.h
r1642 r1645 100 100 } 101 101 102 ~SpecificException() { }102 ~SpecificException() throw() { } 103 103 104 104 ExceptionType getType() const { return Type; } … … 133 133 #ifndef NDEBUG 134 134 #define OrxAssert(condition, errorMessage) \ 135 condition ? ((void)0) : ( orxonox::OutputHandler::getOutStream().setOutputLevel(ORX_ERROR) << errorMessage << std::endl); \136 assert(condition) ;135 condition ? ((void)0) : (void)(orxonox::OutputHandler::getOutStream().setOutputLevel(ORX_ERROR) << errorMessage << std::endl); \ 136 assert(condition) 137 137 #else 138 138 #define OrxAssert(condition, errorMessage) ((void)0) -
code/branches/gui/src/core/input/InputManager.cc
r1642 r1645 86 86 , stateCalibrator_(0) 87 87 , stateEmpty_(0) 88 , bCalibrating_(false) 88 89 , keyboardModifiers_(0) 89 , bCalibrating_(false)90 90 { 91 91 RegisterRootObject(InputManager); -
code/branches/gui/src/core/input/InputManager.h
r1642 r1645 85 85 { 86 86 // --> setConfigValues is private 87 friend ClassIdentifier<InputManager>;87 friend class ClassIdentifier<InputManager>; 88 88 // let Core class use tick(.) 89 friend Core;89 friend class Core; 90 90 91 91 public:
Note: See TracChangeset
for help on using the changeset viewer.