1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 23:28:26 -04:00
nix/src/libexpr/value-to-xml.hh

15 lines
250 B
C++
Raw Normal View History

#pragma once
2006-08-24 10:16:55 -04:00
#include "nixexpr.hh"
#include "eval.hh"
2006-08-24 10:16:55 -04:00
#include <string>
#include <map>
namespace nix {
2006-08-24 10:16:55 -04:00
2010-05-07 10:46:47 -04:00
void printValueAsXML(EvalState & state, bool strict, bool location,
Value & v, std::ostream & out, PathSet & context, const Pos & pos);
}