mirror of https://gitlab.com/cppit/jucipp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
325 B
14 lines
325 B
|
10 years ago
|
#ifndef JUCI_DIALOG_H_
|
||
|
|
#define JUCI_DIALOG_H_
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
class Dialog {
|
||
|
|
public:
|
||
|
|
static std::string select_folder();
|
||
|
|
static std::string select_file();
|
||
|
|
static std::string new_file();
|
||
|
|
static std::string new_folder();
|
||
|
|
static std::string save_file();
|
||
|
|
}; // namespace Dialog
|
||
|
|
|
||
|
|
#endif // JUCI_DIALOG_H_
|