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 Raghavendra Satish
|
---|
7 | Copyright (c) 2001 Bruce Florman
|
---|
8 | http://spirit.sourceforge.net/
|
---|
9 |
|
---|
10 | Use, modification and distribution is subject to the Boost Software
|
---|
11 | License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
---|
12 | http://www.boost.org/LICENSE_1_0.txt)
|
---|
13 | =============================================================================*/
|
---|
14 | #if !defined(BOOST_SPIRIT_CORE_MAIN_HPP)
|
---|
15 | #define BOOST_SPIRIT_CORE_MAIN_HPP
|
---|
16 |
|
---|
17 | #include <boost/spirit/version.hpp>
|
---|
18 | #include <boost/spirit/debug.hpp>
|
---|
19 |
|
---|
20 | ///////////////////////////////////////////////////////////////////////////////
|
---|
21 | //
|
---|
22 | // Spirit.Core includes
|
---|
23 | //
|
---|
24 | ///////////////////////////////////////////////////////////////////////////////
|
---|
25 |
|
---|
26 | // Spirit.Core.Kernel
|
---|
27 | #include <boost/spirit/core/config.hpp>
|
---|
28 | #include <boost/spirit/core/nil.hpp>
|
---|
29 | #include <boost/spirit/core/match.hpp>
|
---|
30 | #include <boost/spirit/core/parser.hpp>
|
---|
31 |
|
---|
32 | // Spirit.Core.Primitives
|
---|
33 | #include <boost/spirit/core/primitives/primitives.hpp>
|
---|
34 | #include <boost/spirit/core/primitives/numerics.hpp>
|
---|
35 |
|
---|
36 | // Spirit.Core.Scanner
|
---|
37 | #include <boost/spirit/core/scanner/scanner.hpp>
|
---|
38 | #include <boost/spirit/core/scanner/skipper.hpp>
|
---|
39 |
|
---|
40 | // Spirit.Core.NonTerminal
|
---|
41 | #include <boost/spirit/core/non_terminal/subrule.hpp>
|
---|
42 | #include <boost/spirit/core/non_terminal/rule.hpp>
|
---|
43 | #include <boost/spirit/core/non_terminal/grammar.hpp>
|
---|
44 |
|
---|
45 | // Spirit.Core.Composite
|
---|
46 | #include <boost/spirit/core/composite/actions.hpp>
|
---|
47 | #include <boost/spirit/core/composite/composite.hpp>
|
---|
48 | #include <boost/spirit/core/composite/directives.hpp>
|
---|
49 | #include <boost/spirit/core/composite/epsilon.hpp>
|
---|
50 | #include <boost/spirit/core/composite/sequence.hpp>
|
---|
51 | #include <boost/spirit/core/composite/sequential_and.hpp>
|
---|
52 | #include <boost/spirit/core/composite/sequential_or.hpp>
|
---|
53 | #include <boost/spirit/core/composite/alternative.hpp>
|
---|
54 | #include <boost/spirit/core/composite/difference.hpp>
|
---|
55 | #include <boost/spirit/core/composite/intersection.hpp>
|
---|
56 | #include <boost/spirit/core/composite/exclusive_or.hpp>
|
---|
57 | #include <boost/spirit/core/composite/kleene_star.hpp>
|
---|
58 | #include <boost/spirit/core/composite/positive.hpp>
|
---|
59 | #include <boost/spirit/core/composite/optional.hpp>
|
---|
60 | #include <boost/spirit/core/composite/list.hpp>
|
---|
61 | #include <boost/spirit/core/composite/no_actions.hpp>
|
---|
62 |
|
---|
63 | // Deprecated interface includes
|
---|
64 | #include <boost/spirit/actor/assign_actor.hpp>
|
---|
65 | #include <boost/spirit/actor/push_back_actor.hpp>
|
---|
66 |
|
---|
67 | #if defined(BOOST_SPIRIT_DEBUG)
|
---|
68 | //////////////////////////////////
|
---|
69 | #include <boost/spirit/debug/parser_names.hpp>
|
---|
70 |
|
---|
71 | #endif // BOOST_SPIRIT_DEBUG
|
---|
72 |
|
---|
73 | #endif // BOOST_SPIRIT_CORE_MAIN_HPP
|
---|
74 |
|
---|