Changeset 1784 for code/trunk/src/util
- Timestamp:
- Sep 15, 2008, 10:54:25 AM (16 years ago)
- Location:
- code/trunk/src/util
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/util/CRC32.h
r1763 r1784 34 34 #include "Integers.h" 35 35 36 #define UTIL_CRC32POLY 0x04C11DB7/* CRC-32 Polynom */36 const unsigned int UTIL_CRC32POLY = 0x04C11DB7; /* CRC-32 Polynom */ 37 37 38 38 _UtilExport void calcCRCBit(uint32_t &crc32, int bit); -
code/trunk/src/util/OutputBuffer.cc
r1747 r1784 29 29 #include "OutputBuffer.h" 30 30 31 #define OUTPUTBUFFER_MAX_LINE_LENGTH 1638432 31 33 32 namespace orxonox 34 33 { 34 const int OUTPUTBUFFER_MAX_LINE_LENGTH = 16384; 35 35 36 void OutputBuffer::registerListener(OutputBufferListener* listener) 36 37 { -
code/trunk/src/util/SubString.h
r1755 r1784 56 56 */ 57 57 58 #ifndef __S UBSTRING_H__59 #define __S UBSTRING_H__58 #ifndef __SubString_H__ 59 #define __SubString_H__ 60 60 61 61 #include "UtilPrereqs.h" … … 171 171 }; 172 172 173 #endif /* __S UBSTRING_H__ */173 #endif /* __SubString_H__ */
Note: See TracChangeset
for help on using the changeset viewer.