satdump/src-core/common/widgets/json_editor.h
2024-07-20 16:52:06 -04:00

10 lines
No EOL
219 B
C++

#pragma once
#include "nlohmann/json.hpp"
namespace widgets
{
template <typename T>
void JSONTreeEditor(T &json, const char *id, bool allow_add = true);
bool JSONTableEditor(nlohmann::json &json, const char* id);
}