Changeset 5695 for code/trunk/src/util
- Timestamp:
- Aug 30, 2009, 2:22:00 AM (15 years ago)
- Location:
- code/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
/code/branches/resource2 (added) merged: 3373-3374,5594,5597,5610-5611,5614,5624,5641,5644-5646,5650-5664,5667-5672,5682-5684,5688-5691,5694
- Property svn:mergeinfo changed
-
code/trunk/src/util/CMakeLists.txt
r5693 r5695 34 34 ) 35 35 36 SET_SOURCE_FILES(UTIL_HDR_FILES 37 CRC32.h 38 Clipboard.h 39 Convert.h 40 Debug.h 41 Exception.h 42 ExprParser.h 43 Math.h 44 MathConvert.h 45 mbool.h 46 MultiType.h 47 MultiTypeValue.h 48 OgreForwardRefs.h 49 OrxAssert.h 50 OrxEnum.h 51 OutputBuffer.h 52 OutputHandler.h 53 RefToValue.h 54 ScopeGuard.h 55 Serialise.h 56 SignalHandler.h 57 Singleton.h 58 Sleep.h 59 StringUtils.h 60 SubString.h 61 TemplateUtils.h 62 TypeTraits.h 63 UTFStringConversions.h 64 UtilPrereqs.h 65 ) 66 36 67 IF(GCC_NO_SYSTEM_HEADER_SUPPORT) 37 68 # Get around displaying a few hundred lines of warning code … … 40 71 41 72 ORXONOX_ADD_LIBRARY(util 42 FIND_HEADER_FILES43 73 DEFINE_SYMBOL 44 74 "UTIL_SHARED_BUILD" … … 46 76 ${OGRE_LIBRARY} 47 77 SOURCE_FILES 48 ${UTIL_SRC_FILES} 78 ${UTIL_SRC_FILES} ${UTIL_HDR_FILES} 49 79 ) -
code/trunk/src/util/Debug.h
r3196 r5695 29 29 /** 30 30 @file 31 @brief Handles different output-levels of errors, warnings, infos and debug information s.31 @brief Handles different output-levels of errors, warnings, infos and debug information. 32 32 33 33 The COUT(level) macro acts like std::cout, but the output is only performed if the given … … 45 45 1: Errors 46 46 2: Warnings 47 3: Information s47 3: Information 48 48 4: Debug information 49 49 5: More debug information 50 6: Crazy debug information s50 6: Crazy debug information 51 51 52 52 @example
Note: See TracChangeset
for help on using the changeset viewer.