| 446 | |
| 447 | |
| 448 | std::string StateDatabase::getDefault(const std::string& name) const { |
| 449 | DEBUG_LOOKUPS(name); |
| 450 | ItemMap::const_iterator it = items.find(name); |
| 451 | if (it != items.end()) { |
| 452 | return it->second.defValue; |
| 453 | } |
| 454 | else { |
| 455 | return ""; |
| 456 | } |
| 457 | } |
| 458 | |
| 459 | |
| 460 | StateDatabase::Permission |
no test coverage detected