| 285 | } |
| 286 | |
| 287 | StringList MaterialDatabase::modNames() const { |
| 288 | StringList modNames = m_modIndex.keys(); |
| 289 | modNames.appendAll(m_metaModIndex.leftValues()); |
| 290 | return modNames; |
| 291 | } |
| 292 | |
| 293 | bool MaterialDatabase::isModName(String const& name) const { |
| 294 | return m_modIndex.contains(name); |
no test coverage detected