Skip to content
Snippets Groups Projects
BZip2.cpp 623 B
Newer Older
 * Distributed under the OSI-approved Apache License, Version 2.0.  See
 * accompanying file Copyright.txt for details.
 *
 * BZIP2.cpp
 *
 *  Created on: Oct 19, 2016
 *      Author: wfg
 */

#include "../../include/transform/BZip2.h"

namespace adios
{
namespace transform
{

BZIP2::BZIP2() : Transform("bzip2") {}

BZIP2::~BZIP2() {}

void BZIP2::Compress(const std::vector<char> &bufferIn,
                     std::vector<char> &bufferOut)
{
}

void BZIP2::Decompress(const std::vector<char> &bufferIn,
                       std::vector<char> &bufferOut)
{
}

} // end namespace transform
} // end namespace adios