/
githubmirror
/
nbs
Обзор
Документация
Войти
/
githubmirror
/
nbs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
library/cpp/lua/json.h
14 строк
356 B
qkrorlqr
Initial NBS OpenSource export
28 апр 2023, 21:54
28 апр 2023, 21:54
783a858
Код
Авторство
О чём код?
#pragma once class TLuaStateHolder; namespace NJson { class TJsonValue; } namespace NLua { // Try to push TJsonValue to lua stack. // Lua stack state is undefined if there's not enough memory to grow stack appropriately // Exception is thrown in this case void PushJsonValue(TLuaStateHolder* state, const NJson::TJsonValue& json); }