blob: 18c5279236ff708ba787864f3dbb9ca3021825df (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include <map>
#include <string>
#include "libexpr/eval.hh"
#include "libexpr/nixexpr.hh"
namespace nix {
void printValueAsXML(EvalState& state, bool strict, bool location, Value& v,
std::ostream& out, PathSet& context);
}
|