diff options
author | Petr Mrázek <peterix@gmail.com> | 2013-01-11 02:25:40 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2013-01-11 02:25:40 +0100 |
commit | b1d00fce8da901b31fa52ea59b4bc3c8edb9d9cc (patch) | |
tree | f7c909b4080e6d1868e601609741450330dc9a1e /quazip/quacrc32.h | |
parent | d6d5c86a736537828a59ddc6389d5d0490942f8c (diff) | |
download | PrismLauncher-b1d00fce8da901b31fa52ea59b4bc3c8edb9d9cc.tar.gz PrismLauncher-b1d00fce8da901b31fa52ea59b4bc3c8edb9d9cc.tar.bz2 PrismLauncher-b1d00fce8da901b31fa52ea59b4bc3c8edb9d9cc.zip |
CMake build system, big pile of libs: bspatch, quazip, java, the launcher
Diffstat (limited to 'quazip/quacrc32.h')
-rw-r--r-- | quazip/quacrc32.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/quazip/quacrc32.h b/quazip/quacrc32.h new file mode 100644 index 00000000..4c86d566 --- /dev/null +++ b/quazip/quacrc32.h @@ -0,0 +1,26 @@ +#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 |