mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
15 lines
No EOL
313 B
C++
15 lines
No EOL
313 B
C++
#pragma once
|
|
|
|
#include "core/cli/subcommand.h"
|
|
|
|
namespace satdump
|
|
{
|
|
class LegacyCmdHandler : public CmdHandler
|
|
{
|
|
public:
|
|
LegacyCmdHandler() : CmdHandler("legacy") {}
|
|
|
|
void reg(CLI::App *app);
|
|
void run(CLI::App *app, CLI::App *subcom, bool is_gui);
|
|
};
|
|
} // namespace satdump
|