| 225 | |
| 226 | |
| 227 | bool StateDatabase::isSet(const std::string& name) const { |
| 228 | DEBUG_LOOKUPS(name); |
| 229 | ItemMap::const_iterator it = items.find(name); |
| 230 | return !(it == items.end() || !it->second.isSet); |
| 231 | } |
| 232 | |
| 233 | |
| 234 | std::string StateDatabase::get(const std::string& name) const { |
no test coverage detected