tvl-depot/third_party/nix/src/libexpr/value-to-xml.hh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
246 B
C++
Raw Normal View History

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