From 786941fe69059a952e7cc630ceb745915a6cbcc8 Mon Sep 17 00:00:00 2001 From: Daniel Larimer Date: Tue, 13 Aug 2013 17:13:25 -0400 Subject: [PATCH] defining lzma header --- include/fc/compress/lzma.hpp | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 include/fc/compress/lzma.hpp diff --git a/include/fc/compress/lzma.hpp b/include/fc/compress/lzma.hpp new file mode 100644 index 0000000..a6d4f81 --- /dev/null +++ b/include/fc/compress/lzma.hpp @@ -0,0 +1,9 @@ +#pragma once +#include + +namespace fc { + + std::vector lzma_compress( const std::vector& in ); + std::vector lzma_decompress( const std::vector& compressed ); + +} // namespace fc