2015-10-30 12:33:40 +01:00
|
|
|
#pragma once
|
|
|
|
|
2016-04-15 15:11:34 +02:00
|
|
|
#include "ref.hh"
|
|
|
|
|
2015-10-30 12:33:40 +01:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2016-02-15 21:45:56 +01:00
|
|
|
std::string compressXZ(const std::string & in);
|
|
|
|
|
2016-04-15 15:11:34 +02:00
|
|
|
ref<std::string> decompressXZ(const std::string & in);
|
2015-10-30 12:33:40 +01:00
|
|
|
|
|
|
|
}
|