#ifndef __DECOMPRESS_HH_INCLUDED__ #define __DECOMPRESS_HH_INCLUDED__ #include #include using std::string; QByteArray zlibDecompress( const char * bufptr, unsigned length ); string decompressZlib( const char * bufptr, unsigned length ); string decompressBzip2( const char * bufptr, unsigned length ); #endif // DECOMPRESS_HH