/*============================================================================= 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_TRAITS_EXPR_TERMINAL_OF_HPP #define SPROUT_WEED_TRAITS_EXPR_TERMINAL_OF_HPP #include #include #include #include #include #include #include #include namespace sprout { namespace weed { namespace traits { // // terminal_of // template struct terminal_of; template struct terminal_of< Arg, typename std::enable_if< !sprout::weed::traits::is_c_str< typename std::remove_reference::type >::value >::type > : public sprout::identity< sprout::weed::expr< sprout::weed::tag::terminal, typename sprout::remove_shallow_cvref::type > > {}; template struct terminal_of< Arg, typename std::enable_if< sprout::weed::traits::is_c_str< typename std::remove_reference::type >::value >::type > : public sprout::identity< sprout::weed::expr< sprout::weed::tag::terminal, typename sprout::weed::detail::c_str_as_string< typename std::remove_reference::type >::type > > {}; } // namespace traits } // namespace weed } // namespace sprout #endif // #ifndef SPROUT_WEED_TRAITS_EXPR_TERMINAL_OF_HPP