blob: 33c465df84553a8003c1e73b3ba7b5c40c11ac3b (
plain) (
tree)
|
|
#pragma once
#include "ref.hh"
#include "types.hh"
#include <string>
namespace nix {
ref<std::string> compress(const std::string & method, ref<std::string> in);
ref<std::string> decompress(const std::string & method, ref<std::string> in);
MakeError(UnknownCompressionMethod, Error);
}
|