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