blob: bf62b874476797f2a671fcec0a3e8f606b14bbcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef SLANG_REFLECTION_JSON_H
#define SLANG_REFLECTION_JSON_H
#include "../compiler-core/slang-pretty-writer.h"
#include "slang.h"
namespace Slang
{
void emitReflectionJSON(
SlangCompileRequest* request,
SlangReflection* reflection,
PrettyWriter& writer);
}
#endif
|