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