satdump/src-core/common/widgets/json_editor.h

10 lines
219 B
C
Raw Permalink Normal View History

2024-07-10 15:45:30 -04:00
#pragma once
#include "nlohmann/json.hpp"
namespace widgets
{
2024-07-20 16:52:06 -04:00
template <typename T>
void JSONTreeEditor(T &json, const char *id, bool allow_add = true);
bool JSONTableEditor(nlohmann::json &json, const char* id);
2024-07-10 15:45:30 -04:00
}