| // Copyright 2022 The ChromiumOS Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "rmad/utils/cros_config_utils.h" |
| |
| #include <string> |
| #include <vector> |
| |
| namespace rmad { |
| |
| bool CrosConfigUtils::HasCustomLabel() const { |
| // A model has custom label if it has more than 1 supported custom label tags, |
| // including empty tag. |
| std::vector<std::string> custom_label_tag_list; |
| return GetCustomLabelTagList(&custom_label_tag_list) && |
| custom_label_tag_list.size() > 1; |
| } |
| |
| } // namespace rmad |