forked from lix-project/lix
15 lines
219 B
C++
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);
|
||
|
|
||
|
}
|