Sprout/sprout/weed/traits/parser/is_parser.hpp

84 lines
2.2 KiB
C++
Raw Normal View History

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_TRAITS_PARSER_IS_PARSER_HPP
#define SPROUT_WEED_TRAITS_PARSER_IS_PARSER_HPP
#include <type_traits>
#include <sprout/config.hpp>
#include <sprout/type_traits/integral_constant.hpp>
2011-11-13 08:54:38 +00:00
#include <sprout/weed/unused.hpp>
#include <sprout/weed/parser/parser_base.hpp>
#include <sprout/weed/traits/type/is_char_type.hpp>
#include <sprout/weed/traits/type/is_c_str.hpp>
#include <sprout/weed/traits/expr/is_expr.hpp>
namespace sprout {
namespace weed {
namespace traits {
//
// is_parser
//
template<typename T, typename = void>
struct is_parser;
template<typename T>
struct is_parser<
T,
typename std::enable_if<
std::is_base_of<sprout::weed::parser_base, T>::value
&& !std::is_const<T>::value
2011-11-13 08:54:38 +00:00
>::type
>
: public sprout::true_type
2011-11-13 08:54:38 +00:00
{};
template<typename T>
struct is_parser<
T,
typename std::enable_if<
sprout::weed::traits::is_expr<T>::value
2011-11-13 08:54:38 +00:00
&& !std::is_const<T>::value
>::type
>
: public sprout::true_type
2011-11-13 08:54:38 +00:00
{};
template<typename T>
struct is_parser<
T,
typename std::enable_if<
sprout::weed::traits::is_char_type<T>::value
2011-11-13 08:54:38 +00:00
&& !std::is_const<T>::value
>::type
>
: public sprout::true_type
2011-11-13 08:54:38 +00:00
{};
template<typename T>
struct is_parser<
T,
typename std::enable_if<
sprout::weed::traits::is_c_str<T>::value
2013-03-25 03:43:47 +00:00
&& !std::is_const<T>::value
2011-11-13 08:54:38 +00:00
>::type
>
: public sprout::true_type
2011-11-13 08:54:38 +00:00
{};
template<typename T>
struct is_parser<
T,
typename std::enable_if<
std::is_const<T>::value
2011-11-13 08:54:38 +00:00
>::type
>
: public sprout::weed::traits::is_parser<
typename std::remove_const<T>::type
>
2011-11-13 08:54:38 +00:00
{};
} // namespace traits
} // namespace weed
} // namespace sprout
#endif // #ifndef SPROUT_WEED_TRAITS_PARSER_IS_PARSER_HPP