openMSX
FilenameSetting.cc
Go to the documentation of this file.
1 #include "FilenameSetting.hh"
2 #include "Completer.hh"
3 #include "FileContext.hh"
4 
5 namespace openmsx {
6 
8 {
9 }
10 
11 void FilenameSettingPolicy::tabCompletion(std::vector<std::string>& tokens) const
12 {
14 }
15 
17 {
18  return "filename";
19 }
20 
21 
23  CommandController& commandController,
24  string_ref name, string_ref description,
25  string_ref initialValue)
27  commandController, name, description, initialValue.str(),
28  Setting::SAVE)
29 {
30 }
31 
32 } // namespace openmsx