| 201 | |
| 202 | template <typename T> |
| 203 | void splitInsertKeyValue(const std::vector<std::string>& kvList, T& map) |
| 204 | { |
| 205 | for (const auto& kv : kvList) |
| 206 | { |
| 207 | map.insert(splitNameAndValue<typename T::mapped_type>(kv)); |
| 208 | } |
| 209 | } |
| 210 | |
| 211 | const char* boolToEnabled(bool enable) |
| 212 | { |