| 4215 | } |
| 4216 | |
| 4217 | const char * Config::getActiveDisplay( int index ) const |
| 4218 | { |
| 4219 | if( index<0 || |
| 4220 | index >= static_cast<int>(getImpl()->m_activeDisplays.size())) |
| 4221 | { |
| 4222 | return nullptr; |
| 4223 | } |
| 4224 | |
| 4225 | return getImpl()->m_activeDisplays[index].c_str(); |
| 4226 | } |
| 4227 | |
| 4228 | int Config::getNumActiveDisplays() const |
| 4229 | { |