| changeset 0 | 6f7a81934006 |
| -1:000000000000 | 0:6f7a81934006 |
|---|---|
1 #include "configio.h" |
|
2 #include <limits.h> |
|
3 |
|
4 static mystring default_autoresponse_dir("autoresponse"); |
|
5 static const mystring filename_autoresponse_dir = "autoresponse-dir"; |
|
6 mystring configuration::autoresponse_dir() const { |
|
7 return read_dir(filename_autoresponse_dir, |
|
8 default_autoresponse_dir, |
|
9 (config_cache<mystring>&)autoresponse_dir_cache); |
|
10 } |