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