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:
Vladimir Prus 2005-10-27 09:42:13 +00:00
parent a00a6c9d19
commit e7e1550269
2 changed files with 14 additions and 0 deletions

View File

@ -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>

View File

@ -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;
};