blob: 8f094185c4cc61c10712ed4404910772c770e060 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef __EXPR_TO_XML_H
#define __EXPR_TO_XML_H
#include <string>
#include <map>
#include "nixexpr.hh"
#include "eval.hh"
namespace nix {
void printValueAsXML(EvalState & state, bool strict,
Value & v, std::ostream & out, PathSet & context);
}
#endif /* !__EXPR_TO_XML_H */
|