Skip to content
Snippets Groups Projects
BZIP2.h 556 B
Newer Older
 *
 *  Created on: Oct 17, 2016
 *      Author: wfg
 */

#ifndef BZIP2_H_
#define BZIP2_H_
#include "core/Transform.h"
class BZIP2 : public Transform
     * @param compressionLevel
    void Compress( const std::vector<char>& bufferIn, std::vector<char>& bufferOut );

    void Decompress( const std::vector<char>& bufferIn, std::vector<char>& bufferOut );
#endif /* BZIP2_H_ */