2010-04-07 13:59:45 +00:00
|
|
|
#ifndef __VALUE_TO_XML_H
|
|
|
|
#define __VALUE_TO_XML_H
|
2006-08-24 14:16:55 +00:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
#include "nixexpr.hh"
|
2010-04-07 13:55:46 +00:00
|
|
|
#include "eval.hh"
|
2006-08-24 14:16:55 +00:00
|
|
|
|
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
|
|
|
|
|
|
|
}
|
2006-08-24 14:16:55 +00:00
|
|
|
|
2010-04-07 13:59:45 +00:00
|
|
|
#endif /* !__VALUE_TO_XML_H */
|