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:
parent
fc92244ba8
commit
9a64454faa
5 changed files with 15 additions and 10 deletions
17
src/libexpr/value-to-xml.hh
Normal file
17
src/libexpr/value-to-xml.hh
Normal 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 */
|
Loading…
Add table
Add a link
Reference in a new issue