mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
18 lines
No EOL
409 B
C++
18 lines
No EOL
409 B
C++
#pragma once
|
|
|
|
#include "subcommand.h"
|
|
|
|
namespace satdump
|
|
{
|
|
class PipelineCmdHandler : public CmdHandler
|
|
{
|
|
private:
|
|
std::map<std::string, std::map<std::string, std::shared_ptr<std::string>>> pipeline_opts;
|
|
|
|
public:
|
|
PipelineCmdHandler() : CmdHandler("pipeline") {}
|
|
|
|
void reg(CLI::App *app);
|
|
void run(CLI::App *app, CLI::App *subcom);
|
|
};
|
|
} // namespace satdump
|