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