guix/src/libexpr/value-to-xml.hh

18 lines
306 B
C++
Raw Normal View History

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 "nixexpr.hh"
#include "eval.hh"
2006-08-24 14:16:55 +00:00
#include <string>
#include <map>
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,
Value & v, std::ostream & out, PathSet & context);
}
2006-08-24 14:16:55 +00:00
2010-04-07 13:59:45 +00:00
#endif /* !__VALUE_TO_XML_H */