add pre/postfix to help
parent
7e05fb3d60
commit
a44590c195
|
@ -438,6 +438,11 @@ namespace blt
|
||||||
|
|
||||||
void arg_parse::printHelp() const
|
void arg_parse::printHelp() const
|
||||||
{
|
{
|
||||||
|
if (!user_args.prefix.empty())
|
||||||
|
{
|
||||||
|
std::cout << "\n";
|
||||||
|
std::cout << user_args.prefix;
|
||||||
|
}
|
||||||
std::cout << "\npositional arguments:\n";
|
std::cout << "\npositional arguments:\n";
|
||||||
// spaces per tab
|
// spaces per tab
|
||||||
const size_t tab_size = 8;
|
const size_t tab_size = 8;
|
||||||
|
@ -479,6 +484,11 @@ namespace blt
|
||||||
std::cout << arg->a_help << "\n";
|
std::cout << arg->a_help << "\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (!user_args.postfix.empty())
|
||||||
|
{
|
||||||
|
std::cout << user_args.postfix;
|
||||||
|
std::cout << "\n";
|
||||||
|
}
|
||||||
|
|
||||||
std::exit(0);
|
std::exit(0);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue