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

#ifndef CZLIB_H_
#define CZLIB_H_


#include <zlib.h>

#include "../core/CTransform.h"


namespace adios
{


class CZLIB : public CTransform
{

public:

    /**
wfg's avatar
wfg committed
     * CZLIB Constructor
     * @param compressionLevel
    CZLIB( const unsigned int compressionLevel, CVariable& variable );
wfg's avatar
wfg committed
    void Compress( ) const;
wfg's avatar
wfg committed
    void Decompress( ) const;