satdump/src-core/modules/jpss/module_jpss_satid.h
2021-09-04 21:00:44 +02:00

29 lines
No EOL
896 B
C++

#pragma once
#include "module.h"
namespace jpss
{
namespace satid
{
class JPSSSatIDModule : public ProcessingModule
{
protected:
std::atomic<size_t> filesize;
std::atomic<size_t> progress;
const int scid_hint;
public:
JPSSSatIDModule(std::string input_file, std::string output_file_hint, std::map<std::string, std::string> parameters);
void process();
void drawUI(bool window);
public:
static std::string getID();
virtual std::string getIDM() { return getID(); };
static std::vector<std::string> getParameters();
static std::shared_ptr<ProcessingModule> getInstance(std::string input_file, std::string output_file_hint, std::map<std::string, std::string> parameters);
};
} // namespace amsu
} // namespace metop