F.E.I.S/src/file_dialogs.hpp
Stepland be7219ad3d IT COMPILES
IIIIIT COMPIIIIIIILES
2022-04-09 00:54:06 +02:00

13 lines
312 B
C++

#pragma once
#include <filesystem>
#include <optional>
#include <tinyfiledialogs.h>
namespace feis {
std::optional<std::filesystem::path> save_file_dialog();
std::optional<std::filesystem::path> open_file_dialog();
std::optional<std::filesystem::path> convert_char_array(const char* utf8_path);
}