/*============================================================================= Copyright (c) 2011-2013 Bolero MURAKAMI https://github.com/bolero-MURAKAMI/Sprout 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) =============================================================================*/ #ifndef SPROUT_WEED_PARSER_AUXILIARY_EOI_HPP #define SPROUT_WEED_PARSER_AUXILIARY_EOI_HPP #include #include #include #include #include #include namespace sprout { namespace weed { // // eoi_p // struct eoi_p : public sprout::weed::parser_base { public: template struct attribute : public sprout::identity {}; template struct result : public sprout::identity::type> > {}; public: template SPROUT_CONSTEXPR typename result::type operator()( Iterator first, Iterator last, Context const& ) const { typedef typename result::type result_type; typedef typename attribute::type attribute_type; return result_type(first == last, first, attribute_type()); } }; // // eoi // SPROUT_STATIC_CONSTEXPR sprout::weed::eoi_p eoi = sprout::weed::eoi_p(); } // namespace weed } // namespace sprout #endif // #ifndef SPROUT_WEED_PARSER_AUXILIARY_EOI_HPP