// Copyright (c) 2001-2010 Hartmut Kaiser // // 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_SUPPORT_ATTR_CAST_OCT_06_2009_00535PM) #define SPIRIT_SUPPORT_ATTR_CAST_OCT_06_2009_00535PM #if defined(_MSC_VER) #pragma once #endif #include #include #include namespace boost { namespace spirit { /////////////////////////////////////////////////////////////////////////// // This one is the function that the user can call directly in order // to create a customized attr_cast component template typename enable_if , stateful_tag_type >::type attr_cast(Expr const& expr) { return stateful_tag_type(expr); } template typename enable_if , stateful_tag_type >::type attr_cast(Expr const& expr) { return stateful_tag_type(expr); } template typename enable_if , stateful_tag_type >::type attr_cast(Expr const& expr) { return stateful_tag_type(expr); } }} #endif