| 275 | } |
| 276 | |
| 277 | void Launch::SetFaceDetectModelList(const std::vector<std::string>& model_list) { |
| 278 | std::lock_guard<std::mutex> lock(pImpl->mutex_); |
| 279 | pImpl->m_face_detect_model_list_ = model_list; |
| 280 | } |
| 281 | |
| 282 | std::vector<std::string> Launch::GetFaceDetectModelList() const { |
| 283 | std::lock_guard<std::mutex> lock(pImpl->mutex_); |
nothing calls this directly
no outgoing calls
no test coverage detected