Szymon Dompke | 32305f1 | 2022-07-05 15:37:21 +0200 | [diff] [blame] | 1 | #pragma once |
2 | |||||
3 | #include <string> | ||||
4 | #include <string_view> | ||||
5 | #include <vector> | ||||
6 | |||||
7 | namespace utils | ||||
8 | { | ||||
9 | |||||
10 | std::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 |