Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
mitkPPTupleEat.h
Go to the documentation of this file.
1 /*===================================================================
2 
3 The Medical Imaging Interaction Toolkit (MITK)
4 
5 Copyright (c) German Cancer Research Center,
6 Division of Medical and Biological Informatics.
7 All rights reserved.
8 
9 This software is distributed WITHOUT ANY WARRANTY; without
10 even the implied warranty of MERCHANTABILITY or FITNESS FOR
11 A PARTICULAR PURPOSE.
12 
13 See LICENSE.txt or http://www.mitk.org for details.
14 
15 ===================================================================*/
16 #/* Copyright (C) 2001
17 # * Housemarque Oy
18 # * http://www.housemarque.com
19 # *
20 # * Distributed under the Boost Software License, Version 1.0. (See
21 # * accompanying file LICENSE_1_0.txt or copy at
22 # * http://www.boost.org/LICENSE_1_0.txt)
23 # */
24 #
25 #/* Revised by Paul Mensonides (2002) */
26 #
27 #/* See http://www.boost.org for most recent version. */
28 #
29 #ifndef MITK_PREPROCESSOR_TUPLE_EAT_HPP
30 #define MITK_PREPROCESSOR_TUPLE_EAT_HPP
31 #
32 #include "mitkPPConfig.h"
33 #
34 #/* MITK_PP_TUPLE_EAT */
35 #
36 #if ~MITK_PP_CONFIG_FLAGS() & MITK_PP_CONFIG_MWCC()
37 #define MITK_PP_TUPLE_EAT(size) MITK_PP_TUPLE_EAT_I(size)
38 #else
39 #define MITK_PP_TUPLE_EAT(size) MITK_PP_TUPLE_EAT_OO((size))
40 #define MITK_PP_TUPLE_EAT_OO(par) MITK_PP_TUPLE_EAT_I##par
41 #endif
42 #
43 #define MITK_PP_TUPLE_EAT_I(size) MITK_PP_TUPLE_EAT_##size
44 #
45 #define MITK_PP_TUPLE_EAT_0()
46 #define MITK_PP_TUPLE_EAT_1(a)
47 #define MITK_PP_TUPLE_EAT_2(a, b)
48 #define MITK_PP_TUPLE_EAT_3(a, b, c)
49 #define MITK_PP_TUPLE_EAT_4(a, b, c, d)
50 #define MITK_PP_TUPLE_EAT_5(a, b, c, d, e)
51 #define MITK_PP_TUPLE_EAT_6(a, b, c, d, e, f)
52 #define MITK_PP_TUPLE_EAT_7(a, b, c, d, e, f, g)
53 #define MITK_PP_TUPLE_EAT_8(a, b, c, d, e, f, g, h)
54 #define MITK_PP_TUPLE_EAT_9(a, b, c, d, e, f, g, h, i)
55 #define MITK_PP_TUPLE_EAT_10(a, b, c, d, e, f, g, h, i, j)
56 #define MITK_PP_TUPLE_EAT_11(a, b, c, d, e, f, g, h, i, j, k)
57 #define MITK_PP_TUPLE_EAT_12(a, b, c, d, e, f, g, h, i, j, k, l)
58 #define MITK_PP_TUPLE_EAT_13(a, b, c, d, e, f, g, h, i, j, k, l, m)
59 #define MITK_PP_TUPLE_EAT_14(a, b, c, d, e, f, g, h, i, j, k, l, m, n)
60 #define MITK_PP_TUPLE_EAT_15(a, b, c, d, e, f, g, h, i, j, k, l, m, n, o)
61 #define MITK_PP_TUPLE_EAT_16(a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p)
62 #define MITK_PP_TUPLE_EAT_17(a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q)
63 #define MITK_PP_TUPLE_EAT_18(a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r)
64 #define MITK_PP_TUPLE_EAT_19(a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s)
65 #define MITK_PP_TUPLE_EAT_20(a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t)
66 #define MITK_PP_TUPLE_EAT_21(a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u)
67 #define MITK_PP_TUPLE_EAT_22(a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v)
68 #define MITK_PP_TUPLE_EAT_23(a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w)
69 #define MITK_PP_TUPLE_EAT_24(a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x)
70 #define MITK_PP_TUPLE_EAT_25(a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y)
71 #
72 #endif