/*============================================================================= Copyright (c) 2001-2007 Joel de Guzman 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 PHOENIX_CORE_IS_ACTOR_HPP #define PHOENIX_CORE_IS_ACTOR_HPP #include #include namespace boost { namespace phoenix { /////////////////////////////////////////////////////////////////////////////// // // is_actor // // Tests if T is an actor. Evaluates to mpl::true_ or mpl::false_ // /////////////////////////////////////////////////////////////////////////////// template struct is_actor : mpl::false_ {}; template struct is_actor > : mpl::true_ {}; }} #endif