sl@0: /*============================================================================= sl@0: Copyright (c) 2001-2003 Joel de Guzman sl@0: Copyright (c) 2002-2003 Hartmut Kaiser sl@0: http://spirit.sourceforge.net/ sl@0: sl@0: Use, modification and distribution is subject to the Boost Software sl@0: License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at sl@0: http://www.boost.org/LICENSE_1_0.txt) sl@0: =============================================================================*/ sl@0: #if !defined(BOOST_SPIRIT_ATTRIBUTE_MAIN_HPP) sl@0: #define BOOST_SPIRIT_ATTRIBUTE_MAIN_HPP sl@0: sl@0: #include sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////// sl@0: // sl@0: // Master header for Spirit.Attributes sl@0: // sl@0: /////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////// sl@0: // sl@0: // Phoenix predefined maximum limit. This limit defines the maximum sl@0: // number of elements a tuple can hold. This number defaults to 3. The sl@0: // actual maximum is rounded up in multiples of 3. Thus, if this value sl@0: // is 4, the actual limit is 6. The ultimate maximum limit in this sl@0: // implementation is 15. sl@0: // sl@0: /////////////////////////////////////////////////////////////////////////////// sl@0: #if !defined(PHOENIX_LIMIT) sl@0: #define PHOENIX_LIMIT 3 sl@0: #endif // !defined(PHOENIX_LIMIT) sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////// sl@0: #include sl@0: #include sl@0: sl@0: #endif // !defined(BOOST_SPIRIT_ATTRIBUTE_MAIN_HPP)