blob: e7749dd7ae306c5b5ab46aef0b3a30e0da9aa768 (
plain) (
tree)
|
|
#pragma once
#include <map>
#include <string>
#include "eval.hh"
#include "nixexpr.hh"
namespace nix {
void printValueAsXML(EvalState& state, bool strict, bool location, Value& v,
std::ostream& out, PathSet& context);
}
|