Krzysztof Grobelny | b8cc78d | 2021-11-29 15:54:53 +0100 | [diff] [blame] | 1 | #pragma once |
2 | |||||
3 | #include <string> | ||||
4 | #include <string_view> | ||||
5 | #include <vector> | ||||
6 | |||||
7 | namespace utils | ||||
8 | { | ||||
9 | |||||
10 | void verifyIdCharacters(std::string_view triggerId); | ||||
11 | std::string generateId(std::string_view prefix, std::string_view triggerName, | ||||
12 | const std::vector<std::string>& conflictIds, | ||||
13 | size_t maxLength); | ||||
14 | |||||
15 | } // namespace utils |