satdump/src-interface/viewer2/dsp/flowgraph/variable_manager.h
2025-03-22 16:24:29 +01:00

26 lines
No EOL
442 B
C++

#pragma once
#include "nlohmann/json.hpp"
namespace satdump
{
namespace ndsp
{
class LuaVariableManager
{
public:
nlohmann::json variables;
public:
nlohmann::json getVariable(std::string var_str);
public:
LuaVariableManager()
{
variables["samplerate"] = 6e6;
}
void drawVariables();
};
}
}