mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
10 lines
No EOL
219 B
C++
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);
|
|
} |