lix-releng-staging/src/libexpr/value-to-json.hh
2013-11-19 00:04:11 +01:00

15 lines
219 B
C++

#pragma once
#include "nixexpr.hh"
#include "eval.hh"
#include <string>
#include <map>
namespace nix {
void printValueAsJSON(EvalState & state, bool strict,
Value & v, std::ostream & out, PathSet & context);
}