| 151 | } |
| 152 | |
| 153 | Scene::Scene(const std::string& id, const std::shared_ptr<APICache>& baseCache) |
| 154 | : id(id), state(baseCache, id, baseCache->getRefreshDuration()) |
| 155 | { } |
| 156 | |
| 157 | Scene::Scene(const std::string& id, const HueCommandAPI& commands, std::chrono::steady_clock::duration refreshDuration, |
| 158 | const nlohmann::json& currentState) |
nothing calls this directly
no test coverage detected