| 4336 | } |
| 4337 | |
| 4338 | const char * Config::getDisplayAll(int index) const noexcept |
| 4339 | { |
| 4340 | if (index >= 0 && index < static_cast<int>(getImpl()->m_displays.size())) |
| 4341 | { |
| 4342 | return getImpl()->m_displays[index].first.c_str(); |
| 4343 | } |
| 4344 | |
| 4345 | return ""; |
| 4346 | } |
| 4347 | |
| 4348 | int Config::getDisplayAllByName(const char * name) const noexcept |
| 4349 | { |