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