blob: 55c169bb49a2998b82be54e203574d26e8e68b18 [file] [log] [blame]
Szymon Dompke32305f12022-07-05 15:37:21 +02001#pragma once
2
3#include <string>
4#include <string_view>
5#include <vector>
6
7namespace utils
8{
9
Patrick Williams583ba442025-02-03 14:28:19 -050010std::pair<std::string, std::string> makeIdName(
11 std::string_view id, std::string_view name, std::string_view defaultName,
12 const std::vector<std::string>& conflictIds);
Szymon Dompke32305f12022-07-05 15:37:21 +020013
14} // namespace utils