| 105 | */ |
| 106 | template <typename... Args> |
| 107 | auto MakeParameters(Args &&... args) |
| 108 | { |
| 109 | return std::array<StringParameter, sizeof...(args)>({std::forward<StringParameter>(args)...}); |
| 110 | } |
| 111 | |
| 112 | /** |
| 113 | * Get a parsed string with most special stringcodes replaced by the string parameters. |
no outgoing calls
no test coverage detected