Add 'extra_style_parser' method to basic_command_line_parser. Previously
this functionality was not available to use user due to private derivation from detail::cmdline. [SVN r31491]
This commit is contained in:
parent
a00a6c9d19
commit
e7e1550269
@ -84,6 +84,15 @@ namespace boost { namespace program_options {
|
||||
return *this;
|
||||
}
|
||||
|
||||
template<class charT>
|
||||
basic_command_line_parser<charT>&
|
||||
basic_command_line_parser<charT>::extra_style_parser(style_parser s)
|
||||
{
|
||||
detail::cmdline::extra_style_parser(s);
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
||||
|
||||
template<class charT>
|
||||
basic_parsed_options<charT>
|
||||
|
@ -122,6 +122,11 @@ namespace boost { namespace program_options {
|
||||
funciton.
|
||||
*/
|
||||
basic_command_line_parser& allow_unregistered();
|
||||
|
||||
using detail::cmdline::style_parser;
|
||||
|
||||
basic_command_line_parser& extra_style_parser(style_parser s);
|
||||
|
||||
private:
|
||||
const options_description* m_desc;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user