2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2014-01-08 07:48:12 +00:00
|
|
|
Copyright (c) 2011-2014 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00:00
|
|
|
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)
|
|
|
|
=============================================================================*/
|
2011-11-13 08:54:38 +00:00
|
|
|
#ifndef SPROUT_WEED_PARSER_AUXILIARY_EPS_HPP
|
|
|
|
#define SPROUT_WEED_PARSER_AUXILIARY_EPS_HPP
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <sprout/config.hpp>
|
2013-03-25 03:43:47 +00:00
|
|
|
#include <sprout/type_traits/identity.hpp>
|
2011-11-13 08:54:38 +00:00
|
|
|
#include <sprout/weed/unused.hpp>
|
|
|
|
#include <sprout/weed/parser_result.hpp>
|
|
|
|
#include <sprout/weed/parser/parser_base.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace weed {
|
|
|
|
//
|
|
|
|
// eps_p
|
|
|
|
//
|
|
|
|
struct eps_p
|
|
|
|
: public sprout::weed::parser_base
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
template<typename Context, typename Iterator>
|
2013-03-25 03:43:47 +00:00
|
|
|
struct attribute
|
|
|
|
: public sprout::identity<sprout::weed::unused>
|
|
|
|
{};
|
2011-11-13 08:54:38 +00:00
|
|
|
template<typename Context, typename Iterator>
|
2013-03-25 03:43:47 +00:00
|
|
|
struct result
|
|
|
|
: public sprout::identity<sprout::weed::parser_result<Iterator, typename attribute<Context, Iterator>::type> >
|
|
|
|
{};
|
2011-11-13 08:54:38 +00:00
|
|
|
public:
|
|
|
|
template<typename Context, typename Iterator>
|
|
|
|
SPROUT_CONSTEXPR typename result<Context, Iterator>::type operator()(
|
2013-07-22 13:00:09 +00:00
|
|
|
Iterator first, Iterator,
|
2011-11-13 08:54:38 +00:00
|
|
|
Context const&
|
|
|
|
) const
|
|
|
|
{
|
|
|
|
typedef typename result<Context, Iterator>::type result_type;
|
|
|
|
typedef typename attribute<Context, Iterator>::type attribute_type;
|
|
|
|
return result_type(true, first, attribute_type());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
//
|
|
|
|
// eps
|
|
|
|
//
|
|
|
|
SPROUT_STATIC_CONSTEXPR sprout::weed::eps_p eps = sprout::weed::eps_p();
|
|
|
|
} // namespace weed
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_WEED_PARSER_AUXILIARY_EPS_HPP
|