blob: b5d9f2d680fd5623ac35d3fdd3507f5489d89fd6 [file] [log] [blame] [edit]
// 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::IsCustomLabel() const {
std::vector<std::string> custom_label_tag_list;
return GetCustomLabelTagList(&custom_label_tag_list) &&
!custom_label_tag_list.empty();
}
} // namespace rmad