Get
| 221 | |
| 222 | ///Get |
| 223 | value_t get(const key_t key, value_t def = value_t()) |
| 224 | { |
| 225 | keysit_t it = current->find(key); |
| 226 | if (current == NULL || it == current->end()) |
| 227 | return def; |
| 228 | |
| 229 | return it->second; |
| 230 | } |
| 231 | |
| 232 | value_t get(const section_t section, const key_t key, value_t def) |
| 233 | { |
no test coverage detected