[857] | 1 | /*=============================================================================
|
---|
| 2 | Copyright (c) 1998-2003 Joel de Guzman
|
---|
| 3 | Copyright (c) 2001-2003 Daniel Nuffer
|
---|
| 4 | Copyright (c) 2001-2003 Hartmut Kaiser
|
---|
| 5 | Copyright (c) 2002-2003 Martin Wille
|
---|
| 6 | Copyright (c) 2002 Juan Carlos Arevalo-Baeza
|
---|
| 7 | Copyright (c) 2002 Raghavendra Satish
|
---|
| 8 | Copyright (c) 2002 Jeff Westfahl
|
---|
| 9 | Copyright (c) 2001 Bruce Florman
|
---|
| 10 | Copyright (c) 2003 Giovanni Bajo
|
---|
| 11 | Copyright (c) 2003 Vaclav Vesely
|
---|
| 12 | Copyright (c) 2003 Jonathan de Halleux
|
---|
| 13 | http://spirit.sourceforge.net/
|
---|
| 14 |
|
---|
| 15 | Use, modification and distribution is subject to the Boost Software
|
---|
| 16 | License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
---|
| 17 | http://www.boost.org/LICENSE_1_0.txt)
|
---|
| 18 | =============================================================================*/
|
---|
| 19 | #if !defined(SPIRIT_HPP)
|
---|
| 20 | #define SPIRIT_HPP
|
---|
| 21 |
|
---|
| 22 | ///////////////////////////////////////////////////////////////////////////////
|
---|
| 23 | //
|
---|
| 24 | // If BOOST_SPIRIT_DEBUG is defined, the following header includes the
|
---|
| 25 | // Spirit.Debug layer, otherwise the non-debug Spirit.Core is included.
|
---|
| 26 | //
|
---|
| 27 | ///////////////////////////////////////////////////////////////////////////////
|
---|
| 28 | #include <boost/spirit/core.hpp>
|
---|
| 29 |
|
---|
| 30 | ///////////////////////////////////////////////////////////////////////////////
|
---|
| 31 | //
|
---|
| 32 | // Spirit.Meta
|
---|
| 33 | //
|
---|
| 34 | ///////////////////////////////////////////////////////////////////////////////
|
---|
| 35 | #include <boost/spirit/meta.hpp>
|
---|
| 36 |
|
---|
| 37 | ///////////////////////////////////////////////////////////////////////////////
|
---|
| 38 | //
|
---|
| 39 | // Spirit.ErrorHandling
|
---|
| 40 | //
|
---|
| 41 | ///////////////////////////////////////////////////////////////////////////////
|
---|
| 42 | #include <boost/spirit/error_handling.hpp>
|
---|
| 43 |
|
---|
| 44 | ///////////////////////////////////////////////////////////////////////////////
|
---|
| 45 | //
|
---|
| 46 | // Spirit.Iterators
|
---|
| 47 | //
|
---|
| 48 | ///////////////////////////////////////////////////////////////////////////////
|
---|
| 49 | #include <boost/spirit/iterator.hpp>
|
---|
| 50 |
|
---|
| 51 | ///////////////////////////////////////////////////////////////////////////////
|
---|
| 52 | //
|
---|
| 53 | // Spirit.Symbols
|
---|
| 54 | //
|
---|
| 55 | ///////////////////////////////////////////////////////////////////////////////
|
---|
| 56 | #include <boost/spirit/symbols.hpp>
|
---|
| 57 |
|
---|
| 58 | ///////////////////////////////////////////////////////////////////////////////
|
---|
| 59 | //
|
---|
| 60 | // Spirit.Utilities
|
---|
| 61 | //
|
---|
| 62 | ///////////////////////////////////////////////////////////////////////////////
|
---|
| 63 | #include <boost/spirit/utility.hpp>
|
---|
| 64 |
|
---|
| 65 | ///////////////////////////////////////////////////////////////////////////////
|
---|
| 66 | //
|
---|
| 67 | // Spirit.Attributes
|
---|
| 68 | //
|
---|
| 69 | ///////////////////////////////////////////////////////////////////////////////
|
---|
| 70 | #include <boost/spirit/attribute.hpp>
|
---|
| 71 |
|
---|
| 72 | #endif // !defined(SPIRIT_HPP)
|
---|