1 | /*============================================================================= |
---|
2 | Copyright (c) 2002-2003 Joel de Guzman |
---|
3 | Copyright (c) 2002 Juan Carlos Arevalo-Baeza |
---|
4 | Copyright (c) 2002-2003 Martin Wille |
---|
5 | http://spirit.sourceforge.net/ |
---|
6 | |
---|
7 | Use, modification and distribution is subject to the Boost Software |
---|
8 | License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at |
---|
9 | http://www.boost.org/LICENSE_1_0.txt) |
---|
10 | =============================================================================*/ |
---|
11 | #ifndef BOOST_SPIRIT_DYNAMIC_HPP |
---|
12 | #define BOOST_SPIRIT_DYNAMIC_HPP |
---|
13 | |
---|
14 | #include <boost/spirit/version.hpp> |
---|
15 | |
---|
16 | /////////////////////////////////////////////////////////////////////////////// |
---|
17 | // |
---|
18 | // Master header for Spirit.Dynamic |
---|
19 | // |
---|
20 | /////////////////////////////////////////////////////////////////////////////// |
---|
21 | #include <boost/spirit/dynamic/if.hpp> |
---|
22 | #include <boost/spirit/dynamic/for.hpp> |
---|
23 | #include <boost/spirit/dynamic/while.hpp> |
---|
24 | #include <boost/spirit/dynamic/lazy.hpp> |
---|
25 | #include <boost/spirit/dynamic/stored_rule.hpp> |
---|
26 | #include <boost/spirit/dynamic/rule_alias.hpp> |
---|
27 | |
---|
28 | //////////////////////////////////////////////////////////////////////////////// |
---|
29 | #endif // BOOST_SPIRIT_DYNAMIC_HPP |
---|