about summary refs log tree commit diff
path: root/src/libexpr/expr-to-xml.hh
blob: de9d55f320aca1ba5e92552defd1400226596cc8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __EXPR_TO_XML_H
#define __EXPR_TO_XML_H

#include <string>
#include <map>

#include "nixexpr.hh"
#include "aterm.hh"

namespace nix {

void printTermAsXML(Expr e, std::ostream & out, PathSet & context, bool location = false);
    
}

#endif /* !__EXPR_TO_XML_H */