mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
14 lines
No EOL
392 B
C++
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
|