?? crc32.h
字號:
#ifndef CB__CRC32_H
#define CB__CRC32_H
//
// Title: Crc32 Class Definition
//
// Copyright 1999, Colosseum Builders, Inc.
// All rights reserved.
//
// Colosseum Builders, Inc. makes no warranty, expressed or implied
// with regards to this software. It is provided as is.
//
// Author: John M. Miano (miano@colosseumbuilders.com)
//
// Date: March 20, 1999
//
// Version: 1
//
// Description:
//
// This is the definition of the Crc32 class. The Crc32 class
// is generated from a template.
//
//
//
// CRC Size: 32 Bits
// CRC Polynomial: 0x04C11DB7
// Reversed: true
// Initial CRC Register Value: FFFFFFFF
// Final CRC XOR Value: FFFFFFFF
//
// Revision History:
//
//
#include "crc.h"
namespace Colosseum
{
template class Crc<32, 0x04C11DB7, true, 0xFFFFFFFF, 0xFFFFFFFF> ;
typedef Crc <32, 0x04C11DB7, true, 0xFFFFFFFF, 0xFFFFFFFF> Crc32 ;
}
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -