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