| 2269 | } |
| 2270 | |
| 2271 | void Config::addSearchPath(const char * path) |
| 2272 | { |
| 2273 | if (!path || !*path) return; |
| 2274 | getImpl()->m_context->addSearchPath(path); |
| 2275 | |
| 2276 | AutoMutex lock(getImpl()->m_cacheidMutex); |
| 2277 | getImpl()->resetCacheIDs(); |
| 2278 | } |
| 2279 | |
| 2280 | const char * Config::getWorkingDir() const |
| 2281 | { |