| 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 | |||||
| Patrick Williams | 583ba44 | 2025-02-03 14:28:19 -0500 | [diff] [blame] | 10 | std::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 Dompke | 32305f1 | 2022-07-05 15:37:21 +0200 | [diff] [blame] | 13 | |
| 14 | } // namespace utils | ||||