1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 08:31:16 +02:00

* expr-to-xml -> value-to-xml.

This commit is contained in:
Eelco Dolstra 2010-04-07 13:59:45 +00:00
parent fc92244ba8
commit 9a64454faa
5 changed files with 15 additions and 10 deletions

View file

@ -0,0 +1,17 @@
#ifndef __VALUE_TO_XML_H
#define __VALUE_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 /* !__VALUE_TO_XML_H */