mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
19 lines
No EOL
513 B
C++
19 lines
No EOL
513 B
C++
#pragma once
|
|
|
|
#include <mutex>
|
|
#include <memory>
|
|
#include "module.h"
|
|
#include "pipeline.h"
|
|
|
|
extern std::shared_ptr<std::vector<std::shared_ptr<ProcessingModule>>> uiCallList;
|
|
extern std::shared_ptr<std::mutex> uiCallListMutex;
|
|
|
|
namespace processing
|
|
{
|
|
void process(std::string downlink_pipeline,
|
|
std::string input_level,
|
|
std::string input_file,
|
|
std::string output_level,
|
|
std::string output_file,
|
|
nlohmann::json parameters);
|
|
} |