/*============================================================================= Copyright (c) 2011 Eric Niebler 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(BOOST_FUSION_FIND_IF_FWD_HPP_INCLUDED) #define BOOST_FUSION_FIND_IF_FWD_HPP_INCLUDED #include #include // Forward declaration of find_if algorithm namespace boost { namespace fusion { namespace result_of { template struct find_if; } template typename lazy_disable_if< is_const , result_of::find_if >::type find_if(Sequence& seq); template typename result_of::find_if::type const find_if(Sequence const& seq); }} #endif