| 160 | } |
| 161 | |
| 162 | ArchiveStack ArchiveStack::fromJsonString(const std::string& input) { |
| 163 | ArchiveStack as; |
| 164 | as.loadJsonString(input); |
| 165 | return as; |
| 166 | } |
| 167 | |
| 168 | void ArchiveStack::loadJson(const rapidjson::Value& lensStack) { |
| 169 | for (const auto& metadata : lensStack.GetArray()) { |
nothing calls this directly
no test coverage detected