template<typename S>
class arg_router::policy::long_name_t< S >
Represents the long name of a node.
If using C++17 then use the template variable helper with the S_
macro; for C++20 and higher, use the constructor directly with a compile-time string literal:
constexpr
auto a = ar::policy::long_name<
S_(
"hello")>;
constexpr auto b = ar::policy::long_name_t{"hello"_S};
- Note
- Long names must be greater than one character and cannot contain any whitespace characters
- Template Parameters
-
Definition at line 23 of file long_name.hpp.