/*============================================================================= Copyright (c) 2014 Thomas Bernard Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) =============================================================================*/ #if !defined(SPIRIT_NO_CASE_SEPT_16_2014_0912PM) #define SPIRIT_NO_CASE_SEPT_16_2014_0912PM #include #include #include #include namespace boost { namespace spirit { namespace x3 { // propagate no_case information through the context template struct no_case_directive : unary_parser> { typedef unary_parser > base_type; static bool const is_pass_through_unary = true; static bool const handles_container = Subject::handles_container; no_case_directive(Subject const& subject) : base_type(subject) {} template bool parse(Iterator& first, Iterator const& last , Context const& context, RContext& rcontext, Attribute& attr) const { return this->subject.parse( first, last , make_context(no_case_compare_, context) , rcontext , attr); } }; struct no_case_gen { template no_case_directive::value_type> operator[](Subject const& subject) const { return { as_parser(subject) }; } }; auto const no_case = no_case_gen{}; }}} #endif