blob: 55c169bb49a2998b82be54e203574d26e8e68b18 [file] [log] [blame]
#pragma once
#include <string>
#include <string_view>
#include <vector>
namespace utils
{
std::pair<std::string, std::string> makeIdName(
std::string_view id, std::string_view name, std::string_view defaultName,
const std::vector<std::string>& conflictIds);
} // namespace utils