add an extra extract_bounding_boxes_reverse_context_type definition
This commit is contained in:
parent
f32b423428
commit
d4e1cb9ae7
1 changed files with 9 additions and 6 deletions
|
@ -75,17 +75,20 @@ using space_type = x3::standard::space_type;
|
|||
|
||||
using phrase_parse_context_type = x3::phrase_parse_context<space_type>::type;
|
||||
|
||||
using context_type = x3::with_context<keys_tag,
|
||||
std::reference_wrapper<keys_map> const,
|
||||
using context_type = x3::with_context<keys_tag, std::reference_wrapper<keys_map> const,
|
||||
phrase_parse_context_type>::type;
|
||||
|
||||
using extract_bounding_boxes_context_type =
|
||||
x3::with_context<bracket_tag,
|
||||
std::reference_wrapper<std::size_t> const,
|
||||
x3::with_context<feature_callback_tag,
|
||||
std::reference_wrapper<callback_type> const,
|
||||
x3::with_context<bracket_tag, std::reference_wrapper<std::size_t> const,
|
||||
x3::with_context<feature_callback_tag, std::reference_wrapper<callback_type> const,
|
||||
context_type>::type>::type;
|
||||
|
||||
using extract_bounding_boxes_reverse_context_type =
|
||||
x3::with_context<keys_tag, std::reference_wrapper<keys_map> const,
|
||||
x3::with_context<feature_callback_tag, std::reference_wrapper<callback_type> const,
|
||||
x3::with_context<bracket_tag, std::reference_wrapper<std::size_t> const,
|
||||
phrase_parse_context_type>::type>::type>::type;
|
||||
|
||||
|
||||
}}}
|
||||
|
||||
|
|
Loading…
Reference in a new issue