| 216 | return defaultValue; |
| 217 | } |
| 218 | void Config::setFileStack( const std::string& key, const FileNamesStack& keyValue ) |
| 219 | { |
| 220 | for ( auto i = 0; i < keyValue.size(); i++ ) |
| 221 | { |
| 222 | config_[key][i] = utf8string( keyValue[i] ); |
| 223 | } |
| 224 | } |
| 225 | |
| 226 | bool Config::hasVector2i( const std::string& key ) const |
| 227 | { |
no test coverage detected