Imported Upstream version 1.49.0
[platform/upstream/boost.git] / boost / fusion / algorithm / query / all.hpp
1 /*=============================================================================
2     Copyright (c) 2001-2011 Joel de Guzman
3     Copyright (c) 2007 Dan Marsden
4
5     Distributed under the Boost Software License, Version 1.0. (See accompanying 
6     file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
7 ==============================================================================*/
8 #if !defined(BOOST_FUSION_ALL_05052005_1238)
9 #define BOOST_FUSION_ALL_05052005_1238
10
11 #include <boost/fusion/support/category_of.hpp>
12 #include <boost/fusion/algorithm/query/detail/all.hpp>
13
14 namespace boost { namespace fusion
15 {
16     namespace result_of
17     {
18         template <typename Sequence, typename F>
19         struct all
20         {
21             typedef bool type;
22         };
23     }
24
25     template <typename Sequence, typename F>
26     inline bool
27     all(Sequence const& seq, F f)
28     {
29         return detail::all(seq, f, typename traits::category_of<Sequence>::type());
30     }
31 }}
32
33 #endif
34