/*============================================================================= Copyright (c) 2001-2007 Joel de Guzman 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_SEQUENCE_APR_22_2006_0811AM) #define SPIRIT_SEQUENCE_APR_22_2006_0811AM #include #include namespace boost { namespace spirit { namespace qi { struct sequence : sequence_base { friend struct sequence_base; private: template static detail::fail_function fail_function( Iterator& first, Iterator const& last , Context& context, Skipper const& skipper) { return detail::fail_function (first, last, context, skipper); } static std::string what_() { return "sequence["; } }; }}} #endif