mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
9 lines
280 B
C++
9 lines
280 B
C++
#include <vector>
|
|
#include <string>
|
|
#include "common/image/image.h"
|
|
|
|
namespace satdump
|
|
{
|
|
template <typename T>
|
|
std::string save_image_dialog(std::string default_name, std::string default_path, std::string window_title, image::Image<T>* image, std::string* default_ext);
|
|
}
|