...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Constructor.
template< class... Args> basic_parser( parse_options const& opt, Args&&... args);
This function constructs the parser with the specified options, with any additional arguments forwarded to the handler's constructor.
Same as Handler(
std::forward<
Args >(
args )...
)
.
Same as Handler(
std::forward<
Args >(
args )...
)
.
Name |
Description |
---|---|
|
Configuration settings for the parser. If this structure is default constructed, the parser will accept only standard JSON. |
|
Optional additional arguments forwarded to the handler's constructor. |
parse_options