mbsim  4.0.0
MBSim Kernel
boost_parameters.h
1/* Copyright (C) 2004-2009 MBSim Development Team
2 *
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public
5 * License as published by the Free Software Foundation; either
6 * version 2.1 of the License, or (at your option) any later version.
7 *
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16 *
17 * Contact: martin.o.foerg@googlemail.com
18 */
19
20#ifndef _BOOST_PARAMETERS_H_
21#define _BOOST_PARAMETERS_H_
22
23// set the maximal number or arguments (old boost libs use only 5 newer use already 8)
24#define BOOST_PARAMETER_MAX_ARITY 12
25
26#include <boost/parameter/name.hpp>
27#include <boost/parameter/keyword.hpp>
28#include <boost/parameter/preprocessor.hpp>
29
30namespace MBSim {
31
32 BOOST_PARAMETER_NAME(scaleLength)
33 BOOST_PARAMETER_NAME(scaleSize)
34 BOOST_PARAMETER_NAME(type)
35 BOOST_PARAMETER_NAME(referencePoint)
36 BOOST_PARAMETER_NAME(diffuseColor)
37 BOOST_PARAMETER_NAME(transparency)
38 BOOST_PARAMETER_NAME(size)
39 BOOST_PARAMETER_NAME(offset)
40 BOOST_PARAMETER_NAME(length)
41 BOOST_PARAMETER_NAME(xLength)
42 BOOST_PARAMETER_NAME(yLength)
43 BOOST_PARAMETER_NAME(zLength)
44 BOOST_PARAMETER_NAME(polynomialPoints)
45 BOOST_PARAMETER_NAME(circularPoints)
46 BOOST_PARAMETER_NAME(numberOfCoils)
47 BOOST_PARAMETER_NAME(nominalLength)
48 BOOST_PARAMETER_NAME(springRadius)
49 BOOST_PARAMETER_NAME(scaleFactor)
50 BOOST_PARAMETER_NAME(crossSectionRadius)
51 BOOST_PARAMETER_NAME(nodes)
52 BOOST_PARAMETER_NAME(etaNodes)
53 BOOST_PARAMETER_NAME(xiNodes)
54 BOOST_PARAMETER_NAME(minimalColorValue)
55 BOOST_PARAMETER_NAME(maximalColorValue)
56 BOOST_PARAMETER_NAME(filled)
57 BOOST_PARAMETER_NAME(colorRepresentation)
58 BOOST_PARAMETER_NAME(sideOfInteraction)
59 BOOST_PARAMETER_NAME(pointSize)
60 BOOST_PARAMETER_NAME(lineWidth)
61 BOOST_PARAMETER_NAME(path)
62
63}
64
65#endif
namespace MBSim
Definition: bilateral_constraint.cc:30