template<typename S>
class arg_router::policy::program_addendum_t< S >
Represents the program addendum.
Used by help nodes to display supplementary information (usually) after the argument output.
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::program_addendum<
S_(
"hello")>;
constexpr auto b = ar::policy::program_addendum_t{"hello"_S};
- Note
- Must be greater than one character
- Template Parameters
-
Definition at line 25 of file program_addendum.hpp.