yaze 0.2.0
Link to the Past ROM Editor
 
Loading...
Searching...
No Matches
file_dialog.h
Go to the documentation of this file.
1#ifndef YAZE_APP_CORE_PLATFORM_FILE_DIALOG_H
2#define YAZE_APP_CORE_PLATFORM_FILE_DIALOG_H
3
4#include <string>
5#include <vector>
6
7namespace yaze {
8namespace app {
9namespace core {
10
12 public:
13 static std::string ShowOpenFileDialog();
14 static std::string ShowOpenFolderDialog();
15 static std::vector<std::string> GetSubdirectoriesInFolder(
16 const std::string& folder_path);
17 static std::vector<std::string> GetFilesInFolder(
18 const std::string& folder_path);
19};
20
21} // namespace core
22} // namespace app
23} // namespace yaze
24
25#endif // YAZE_APP_CORE_PLATFORM_FILE_DIALOG_H
static std::vector< std::string > GetSubdirectoriesInFolder(const std::string &folder_path)
static std::string ShowOpenFileDialog()
static std::string ShowOpenFolderDialog()
static std::vector< std::string > GetFilesInFolder(const std::string &folder_path)
Definition common.cc:21