2012-07-18 20:59:03 +02:00
|
|
|
#pragma once
|
2006-08-24 16:16:55 +02:00
|
|
|
|
2010-10-04 19:55:38 +02:00
|
|
|
#include <map>
|
2020-05-17 17:31:57 +02:00
|
|
|
#include <string>
|
2020-05-19 16:54:39 +02:00
|
|
|
|
2020-05-17 17:31:57 +02:00
|
|
|
#include "eval.hh"
|
|
|
|
#include "nixexpr.hh"
|
2010-10-04 19:55:38 +02:00
|
|
|
|
2006-09-04 23:06:23 +02:00
|
|
|
namespace nix {
|
2006-08-24 16:16:55 +02:00
|
|
|
|
2020-05-17 17:31:57 +02:00
|
|
|
void printValueAsXML(EvalState& state, bool strict, bool location, Value& v,
|
|
|
|
std::ostream& out, PathSet& context);
|
|
|
|
|
2006-09-04 23:06:23 +02:00
|
|
|
}
|