SatDump 2.0.0-alpha-76a915210
Loading...
Searching...
No Matches
product_process.h
Go to the documentation of this file.
1#pragma once
2
6
7#include "product.h"
8
9namespace satdump
10{
11 namespace products
12 {
20 void process_product_with_handler(std::shared_ptr<Product> p, std::string directory);
21
29 inline void process_product_with_handler(Product *p, std::string directory)
30 {
31 satdump::products::process_product_with_handler(std::shared_ptr<satdump::products::Product>(p, [](auto *) {}), directory);
32 }
33 } // namespace products
34} // namespace satdump
Core SatDump product class.
Definition product.h:33
Core Product implementation.