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

#ifndef BZIP2_H_
#define BZIP2_H_
#include "core/Transform.h"
namespace transform
{
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 );
} //end namespace transform
} //end namespace adios
#endif /* BZIP2_H_ */