Chris@16
|
1 /*=============================================================================
|
Chris@16
|
2 Copyright (c) 2001-2003 Joel de Guzman
|
Chris@16
|
3 Copyright (c) 2002-2003 Hartmut Kaiser
|
Chris@16
|
4 http://spirit.sourceforge.net/
|
Chris@16
|
5
|
Chris@16
|
6 Distributed under the Boost Software License, Version 1.0. (See accompanying
|
Chris@16
|
7 file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
Chris@16
|
8 =============================================================================*/
|
Chris@16
|
9 #if !defined(BOOST_SPIRIT_ATTRIBUTE_MAIN_HPP)
|
Chris@16
|
10 #define BOOST_SPIRIT_ATTRIBUTE_MAIN_HPP
|
Chris@16
|
11
|
Chris@16
|
12 #include <boost/spirit/home/classic/version.hpp>
|
Chris@16
|
13
|
Chris@16
|
14 ///////////////////////////////////////////////////////////////////////////////
|
Chris@16
|
15 //
|
Chris@16
|
16 // Master header for Spirit.Attributes
|
Chris@16
|
17 //
|
Chris@16
|
18 ///////////////////////////////////////////////////////////////////////////////
|
Chris@16
|
19
|
Chris@16
|
20 ///////////////////////////////////////////////////////////////////////////////
|
Chris@16
|
21 //
|
Chris@16
|
22 // Phoenix predefined maximum limit. This limit defines the maximum
|
Chris@16
|
23 // number of elements a tuple can hold. This number defaults to 3. The
|
Chris@16
|
24 // actual maximum is rounded up in multiples of 3. Thus, if this value
|
Chris@16
|
25 // is 4, the actual limit is 6. The ultimate maximum limit in this
|
Chris@16
|
26 // implementation is 15.
|
Chris@16
|
27 //
|
Chris@16
|
28 ///////////////////////////////////////////////////////////////////////////////
|
Chris@16
|
29 #if !defined(PHOENIX_LIMIT)
|
Chris@16
|
30 #define PHOENIX_LIMIT 6
|
Chris@16
|
31 #endif // !defined(PHOENIX_LIMIT)
|
Chris@16
|
32
|
Chris@16
|
33 ///////////////////////////////////////////////////////////////////////////////
|
Chris@16
|
34 #include <boost/spirit/home/classic/attribute/parametric.hpp>
|
Chris@16
|
35 #include <boost/spirit/home/classic/attribute/closure.hpp>
|
Chris@16
|
36
|
Chris@16
|
37 #endif // !defined(BOOST_SPIRIT_ATTRIBUTE_MAIN_HPP)
|