| 451 | } |
| 452 | |
| 453 | static void generateElementForArray(const ValueVector& array, pugi::xml_node& parent) |
| 454 | { |
| 455 | auto arrayDS = parent.append_child("array"sv); |
| 456 | for (const auto& value : array) |
| 457 | { |
| 458 | generateElementForObject(value, arrayDS); |
| 459 | } |
| 460 | } |
| 461 | |
| 462 | // Implement FileUtils |
| 463 | FileUtils* FileUtils::s_sharedFileUtils = nullptr; |
no test coverage detected