| 4315 | } |
| 4316 | |
| 4317 | const char * Config::getActiveView( int index ) const |
| 4318 | { |
| 4319 | if( index<0 || |
| 4320 | index >= static_cast<int>(getImpl()->m_activeViews.size())) |
| 4321 | { |
| 4322 | return nullptr; |
| 4323 | } |
| 4324 | |
| 4325 | return getImpl()->m_activeViews[index].c_str(); |
| 4326 | } |
| 4327 | |
| 4328 | int Config::getNumActiveViews() const |
| 4329 | { |