~ubuntu-branches/ubuntu/wily/davix/wily

« back to all changes in this revision

Viewing changes to deps/boost_intern/boost/mpl/aux_/preprocessed/msvc70/apply_fwd.hpp

  • Committer: Package Import Robot
  • Author(s): Mattias Ellert
  • Date: 2015-07-31 13:17:55 UTC
  • mfrom: (5.1.3 sid)
  • Revision ID: package-import@ubuntu.com-20150731131755-mizprbmn7ogv33te
Tags: 0.4.1-1
* Update to version 0.4.1
* Implement Multi-Arch support

Show diffs side-by-side

added added

removed removed

Lines of Context:
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/apply_fwd.hpp" header
10
 
// -- DO NOT modify by hand!
11
 
 
12
 
namespace boost { namespace mpl {
13
 
 
14
 
template<
15
 
      typename F
16
 
    >
17
 
struct apply0;
18
 
 
19
 
template<
20
 
      typename F, typename T1
21
 
    >
22
 
struct apply1;
23
 
 
24
 
template<
25
 
      typename F, typename T1, typename T2
26
 
    >
27
 
struct apply2;
28
 
 
29
 
template<
30
 
      typename F, typename T1, typename T2, typename T3
31
 
    >
32
 
struct apply3;
33
 
 
34
 
template<
35
 
      typename F, typename T1, typename T2, typename T3, typename T4
36
 
    >
37
 
struct apply4;
38
 
 
39
 
template<
40
 
      typename F, typename T1, typename T2, typename T3, typename T4
41
 
    , typename T5
42
 
    >
43
 
struct apply5;
44
 
 
45
 
}}
46