2015-10-30 11:33:40 +00:00
|
|
|
#pragma once
|
|
|
|
|
2016-04-15 13:11:34 +00:00
|
|
|
#include "ref.hh"
|
2016-04-29 15:02:57 +00:00
|
|
|
#include "types.hh"
|
2016-04-15 13:11:34 +00:00
|
|
|
|
2015-10-30 11:33:40 +00:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2016-04-29 15:02:57 +00:00
|
|
|
ref<std::string> compress(const std::string & method, ref<std::string> in);
|
2016-02-15 20:45:56 +00:00
|
|
|
|
2016-04-29 15:02:57 +00:00
|
|
|
ref<std::string> decompress(const std::string & method, ref<std::string> in);
|
|
|
|
|
|
|
|
MakeError(UnknownCompressionMethod, Error);
|
2015-10-30 11:33:40 +00:00
|
|
|
|
|
|
|
}
|