| author | "Tomas Zeman <tzeman@volny.cz>" |
| Wed, 16 Jan 2008 22:39:43 +0100 | |
| changeset 0 | 6f7a81934006 |
| permissions | -rw-r--r-- |
| 0 | 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 |
} |