blob: 2c4ce75283e98ff1c04b04f369c428882b97ed9f [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
10std::pair<std::string, std::string>
11 makeIdName(std::string_view id, std::string_view name,
12 std::string_view defaultName,
13 const std::vector<std::string>& conflictIds);
14
15} // namespace utils