mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
13 lines
No EOL
316 B
C++
13 lines
No EOL
316 B
C++
#pragma once
|
|
#include "nlohmann/json.hpp"
|
|
|
|
namespace satdump
|
|
{
|
|
namespace widgets
|
|
{
|
|
template <typename T>
|
|
void JSONTreeEditor(T &json, const char *id, bool allow_add = true);
|
|
|
|
bool JSONTableEditor(nlohmann::json &json, const char *id);
|
|
} // namespace widgets
|
|
} // namespace satdump
|