Nui
file_dialog.hpp
Go to the documentation of this file.
1 #pragma once
2 
4 
5 namespace Nui::FileDialog
6 {
7  std::optional<std::vector<std::filesystem::path>> showOpenDialog(OpenDialogOptions const& options);
8  std::optional<std::vector<std::filesystem::path>> showDirectoryDialog(DirectoryDialogOptions const& options);
9  std::optional<std::filesystem::path> showSaveDialog(SaveDialogOptions const& options);
10 }
Definition: file_dialog.hpp:6
std::optional< std::filesystem::path > showSaveDialog(SaveDialogOptions const &options)
Definition: file_dialog.cpp:107
std::optional< std::vector< std::filesystem::path > > showDirectoryDialog(DirectoryDialogOptions const &options)
Definition: file_dialog.cpp:98
std::optional< std::vector< std::filesystem::path > > showOpenDialog(OpenDialogOptions const &options)
Definition: file_dialog.cpp:88