Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 2, 2008, 12:38:26 PM (16 years ago)
Author:
rgrieder
Message:

Moved all util classes and functions to orxonox namespace.
Converted all code to 4 spaces/tab in util.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/objecthierarchy/src/util/CRC32.h

    r1791 r2111  
    3434#include "Integers.h"
    3535
    36 const unsigned int UTIL_CRC32POLY = 0x04C11DB7; /* CRC-32 Polynom */
     36namespace orxonox
     37{
     38    const unsigned int UTIL_CRC32POLY = 0x04C11DB7; /* CRC-32 Polynom */
    3739
    38 _UtilExport void calcCRCBit(uint32_t &crc32, int bit);
     40    _UtilExport void calcCRCBit(uint32_t &crc32, int bit);
    3941
    40 _UtilExport uint32_t calcCRC(unsigned char *data, unsigned int dataLength);
    41 
     42    _UtilExport uint32_t calcCRC(unsigned char *data, unsigned int dataLength);
     43}
    4244
    4345#endif /* _Util_CRC_H__ */
Note: See TracChangeset for help on using the changeset viewer.