Nix/src/libexpr/value-to-xml.hh
2020-10-07 15:00:10 +00:00

15 lines
233 B
C++

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