1 #pragma once
2 
3 #include <string>
4 
5 namespace utils::string_utils
6 {
7 std::string getMaxPrefix();
8 std::string getMaxId();
9 std::string getMaxName();
10 std::string getTooLongPrefix();
11 std::string getTooLongId();
12 std::string getTooLongName();
13 } // namespace utils::string_utils
14