satdump/src-cli2/run_as.h

17 lines
359 B
C
Raw Permalink Normal View History

#pragma once
2025-07-15 18:02:13 +02:00
#include "subcommand.h"
namespace satdump
{
2025-07-15 18:02:13 +02:00
class ScriptCmdHandler : public CmdHandler
{
public:
ScriptCmdHandler() : CmdHandler("run") {}
void reg(CLI::App *app);
void run(CLI::App *app, CLI::App *subcom);
int runAngelScript(std::string file, bool lint, bool predef);
};
} // namespace satdump