Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2024-11-15 09:31:34

0001 /*=============================================================================
0002     Copyright (c) 2001-2003 Joel de Guzman
0003     Copyright (c) 2002-2003 Hartmut Kaiser
0004     http://spirit.sourceforge.net/
0005 
0006   Distributed under the Boost Software License, Version 1.0. (See accompanying
0007   file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0008 =============================================================================*/
0009 #if !defined(BOOST_SPIRIT_ATTRIBUTE_MAIN_HPP)
0010 #define BOOST_SPIRIT_ATTRIBUTE_MAIN_HPP
0011 
0012 #include <boost/spirit/home/classic/version.hpp>
0013 
0014 ///////////////////////////////////////////////////////////////////////////////
0015 //
0016 //  Master header for Spirit.Attributes
0017 //
0018 ///////////////////////////////////////////////////////////////////////////////
0019 
0020 ///////////////////////////////////////////////////////////////////////////////
0021 //
0022 //  Phoenix predefined maximum limit. This limit defines the maximum
0023 //  number of elements a tuple can hold. This number defaults to 3. The
0024 //  actual maximum is rounded up in multiples of 3. Thus, if this value
0025 //  is 4, the actual limit is 6. The ultimate maximum limit in this
0026 //  implementation is 15.
0027 //
0028 ///////////////////////////////////////////////////////////////////////////////
0029 #if !defined(PHOENIX_LIMIT)
0030 #define PHOENIX_LIMIT 6
0031 #endif // !defined(PHOENIX_LIMIT)
0032 
0033 ///////////////////////////////////////////////////////////////////////////////
0034 #include <boost/spirit/home/classic/attribute/parametric.hpp>
0035 #include <boost/spirit/home/classic/attribute/closure.hpp>
0036 
0037 #endif // !defined(BOOST_SPIRIT_ATTRIBUTE_MAIN_HPP)