nix-super/src/libexpr/value-to-xml.hh

15 lines
251 B
C++
Raw Normal View History

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