blob: aa9508e7d28acdb977974066a2899b345afc8771 [file] [log] [blame]
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +01001#pragma once
2
3#include <string>
4#include <string_view>
5#include <vector>
6
7namespace utils
8{
9
10void verifyIdCharacters(std::string_view triggerId);
11std::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