Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/defs/functor_list.h @ 5133

Last change on this file since 5133 was 5133, checked in by bensch, 19 years ago

orxonox/trunk: made the Functor-List external

File size: 2.0 KB
Line 
1/*
2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10   */
11
12
13/*!
14 * @file functors_list.h
15 * all the Different types of Functions one can include
16*/
17
18
19  //! makes functions with one string loadable
20  FUNCTOR_LIST(1)(l_STRING);
21  //! makes functions with two strings loadable
22  FUNCTOR_LIST(2)(l_STRING, l_STRING);
23  //! makes functions with three strings loadable
24  FUNCTOR_LIST(3)(l_STRING, l_STRING, l_STRING);
25  //! makes functions with four strings loadable
26  FUNCTOR_LIST(4)(l_STRING, l_STRING, l_STRING, l_STRING);
27
28  //! makes functions with one bool loadeable
29  FUNCTOR_LIST(1)(l_BOOL);
30
31  //! makes functions with one int loadable
32  FUNCTOR_LIST(1)(l_INT);
33  //! makes functions with two ints loadable
34  FUNCTOR_LIST(2)(l_INT, l_INT);
35  //! makes functions with three ints loadable
36  FUNCTOR_LIST(3)(l_INT, l_INT, l_INT);
37  //! makes functions with four ints loadable
38  FUNCTOR_LIST(4)(l_INT, l_INT, l_INT, l_INT);
39
40
41  //! makes functions with one unsigned int loadable
42  FUNCTOR_LIST(1)(l_UINT);
43  //! makes functions with two unsigned ints loadable
44  FUNCTOR_LIST(2)(l_UINT, l_UINT);
45  //! makes functions with three unsigned ints loadable
46  FUNCTOR_LIST(3)(l_UINT, l_UINT, l_UINT);
47  //! makes functions with four unsigned ints loadable
48  FUNCTOR_LIST(4)(l_UINT, l_UINT, l_UINT, l_UINT);
49
50  //! makes functions with one float loadable
51  FUNCTOR_LIST(1)(l_FLOAT);
52  //! makes functions with two floats loadable
53  FUNCTOR_LIST(2)(l_FLOAT, l_FLOAT);
54  //! makes functions with three floats loadable
55  FUNCTOR_LIST(3)(l_FLOAT, l_FLOAT, l_FLOAT);
56  //! makes functions with four floats loadable
57  FUNCTOR_LIST(4)(l_FLOAT, l_FLOAT, l_FLOAT, l_FLOAT);
58  //! makes functions with four floats loadable
59  FUNCTOR_LIST(5)(l_FLOAT, l_FLOAT, l_FLOAT, l_FLOAT, l_FLOAT);
60
61  //! mixed values:
62  FUNCTOR_LIST(2)(l_STRING, l_FLOAT);
63
64
Note: See TracBrowser for help on using the repository browser.