| Szymon Dompke | 32305f1 | 2022-07-05 15:37:21 +0200 | [diff] [blame] | 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(); | ||||
| Patrick Williams | 3a1c297 | 2023-05-10 07:51:04 -0500 | [diff] [blame] | 13 | } // namespace utils::string_utils |