mirror of
https://gitlab.com/square-game-liberation-front/F.E.I.S.git
synced 2025-03-01 07:50:25 +01:00
13 lines
312 B
C++
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);
|
|
} |