mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
17 lines
391 B
C
17 lines
391 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "subcommand.h"
|
||
|
|
|
||
|
|
namespace satdump
|
||
|
|
{
|
||
|
|
class ProcessCmdHandler : public CmdHandler
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
ProcessCmdHandler() : CmdHandler("process") {}
|
||
|
|
|
||
|
|
void reg(CLI::App *app);
|
||
|
|
void run(CLI::App *app, CLI::App *subcom, bool is_gui);
|
||
|
|
|
||
|
|
void processProductsOrDataset(std::string product, std::string directory);
|
||
|
|
};
|
||
|
|
} // namespace satdump
|