misc/quazip/quacrc32.h
author nemo
Thu, 01 Nov 2012 19:12:22 -0400
branch0.9.18
changeset 7934 c07e0a3a3ce3
parent 5752 ea95ee97c805
permissions -rw-r--r--
5 files that fail to load in libpng1.5 - ran convert against libpng1.2 then pngcrushed 'em to strip for good luck

#ifndef QUACRC32_H
#define QUACRC32_H

#include "quachecksum32.h"

///CRC32 checksum
/** \class QuaCrc32 quacrc32.h <quazip/quacrc32.h>
* This class wrappers the crc32 function with the QuaChecksum32 interface.
* See QuaChecksum32 for more info.
*/
class QUAZIP_EXPORT QuaCrc32 : public QuaChecksum32 {

public:
	QuaCrc32();

	quint32 calculate(const QByteArray &data);

	void reset();
	void update(const QByteArray &buf);
	quint32 value();

private:
	quint32 checksum;
};

#endif //QUACRC32_H