1 
2 // Copyright Aleksey Gurtovoy 2000-2004
3 //
4 // Distributed under the Boost Software License, Version 1.0.
5 // (See accompanying file LICENSE_1_0.txt or copy at
6 // http://www.boost.org/LICENSE_1_0.txt)
7 //
8 
9 // Preprocessed version of "boost/mpl/bind_fwd.hpp" header
10 // -- DO NOT modify by hand!
11 
12 namespace boost { namespace mpl {
13 
14 template<
15       typename F
16     >
17 struct bind0;
18 
19 template<
20       typename F, typename T1
21     >
22 struct bind1;
23 
24 template<
25       typename F, typename T1, typename T2
26     >
27 struct bind2;
28 
29 template<
30       typename F, typename T1, typename T2, typename T3
31     >
32 struct bind3;
33 
34 template<
35       typename F, typename T1, typename T2, typename T3, typename T4
36     >
37 struct bind4;
38 
39 template<
40       typename F, typename T1, typename T2, typename T3, typename T4
41     , typename T5
42     >
43 struct bind5;
44 
45 }}
46 
47