satdump/plugins/firstparty_support/procfile.h
2025-08-12 13:42:31 +02:00

14 lines
No EOL
392 B
C++

#pragma once
#include "product_info.h"
#include "products/product.h"
#include <memory>
namespace satdump
{
namespace firstparty
{
FirstPartyProductInfo identifyFirstPartyProductFile(std::string fpath);
std::shared_ptr<products::Product> processFirstPartyProductFile(FirstPartyProductInfo info, std::string fpath);
} // namespace firstparty
} // namespace satdump