Load Json::Value into this object
| 315 | |
| 316 | // Load Json::Value into this object |
| 317 | void CacheMemory::SetJsonValue(const Json::Value root) { |
| 318 | |
| 319 | // Close timeline before we do anything (this also removes all open and closing clips) |
| 320 | Clear(); |
| 321 | |
| 322 | // Set parent data |
| 323 | CacheBase::SetJsonValue(root); |
| 324 | |
| 325 | if (!root["type"].isNull()) |
| 326 | cache_type = root["type"].asString(); |
| 327 | } |
nothing calls this directly
no outgoing calls
no test coverage detected