00001 /* 00002 Copyright (C) 2005-2006 Feeling Software Inc. 00003 MIT License: http://www.opensource.org/licenses/mit-license.php 00004 */ 00005 /* 00006 Based on the FS Import classes: 00007 Copyright (C) 2005-2006 Feeling Software Inc 00008 Copyright (C) 2005-2006 Autodesk Media Entertainment 00009 MIT License: http://www.opensource.org/licenses/mit-license.php 00010 */ 00011 00017 #ifndef _FU_CRC32_H_ 00018 #define _FU_CRC32_H_ 00019 00026 namespace FUCrc32 00027 { 00029 typedef uint32 crc32; 00030 00034 crc32 FCOLLADA_EXPORT CRC32(const fstring& text); 00035 crc32 FCOLLADA_EXPORT CRC32(const fchar* text); 00036 crc32 FCOLLADA_EXPORT CRC32(const string& text); 00037 crc32 FCOLLADA_EXPORT CRC32(const char* text); 00038 }; 00039 00040 #endif // _FU_CRC32_H_ 00041