| 496 | } |
| 497 | |
| 498 | const char* Config::getRootDirectory() |
| 499 | { |
| 500 | // must check it here - command line must override any other root settings |
| 501 | if (rootFromCommandLine) |
| 502 | { |
| 503 | return rootFromCommandLine->c_str(); |
| 504 | } |
| 505 | |
| 506 | return fb_get_master_interface()->getConfigManager()->getRootDirectory(); |
| 507 | } |
| 508 | |
| 509 | |
| 510 | unsigned int Config::getKeyByName(ConfigName nm) |
nothing calls this directly
no test coverage detected