nix-super/src/libexpr/value-to-json.hh

20 lines
356 B
C++
Raw Normal View History

2013-11-19 01:03:11 +02:00
#pragma once
#include "nixexpr.hh"
#include "eval.hh"
#include <string>
#include <map>
namespace nix {
class JSONPlaceholder;
2013-11-19 01:33:06 +02:00
void printValueAsJSON(EvalState & state, bool strict,
Value & v, JSONPlaceholder & out, PathSet & context);
2013-11-19 01:33:06 +02:00
void printValueAsJSON(EvalState & state, bool strict,
Value & v, std::ostream & str, PathSet & context);
2013-11-19 01:33:06 +02:00
2013-11-19 01:03:11 +02:00
}