| 267 | } |
| 268 | |
| 269 | std::vector<std::string> |
| 270 | Properties::Keys_unlocked() const |
| 271 | { |
| 272 | std::vector<std::string> result {}; |
| 273 | for (auto const& kv_pair : props) |
| 274 | { |
| 275 | result.push_back(kv_pair.first); |
| 276 | } |
| 277 | |
| 278 | return result; |
| 279 | } |
| 280 | |
| 281 | void |
| 282 | Properties::Clear_unlocked() |