[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 | http://spirit.sourceforge.net/
|
---|
| 10 |
|
---|
| 11 | Use, modification and distribution is subject to the Boost Software
|
---|
| 12 | License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
---|
| 13 | http://www.boost.org/LICENSE_1_0.txt)
|
---|
| 14 | =============================================================================*/
|
---|
| 15 | #if !defined(BOOST_SPIRIT_UTILITY_MAIN_HPP)
|
---|
| 16 | #define BOOST_SPIRIT_UTILITY_MAIN_HPP
|
---|
| 17 |
|
---|
| 18 | #include <boost/spirit/version.hpp>
|
---|
| 19 |
|
---|
| 20 | ///////////////////////////////////////////////////////////////////////////////
|
---|
| 21 | //
|
---|
| 22 | // Master header for Spirit.Utilities
|
---|
| 23 | //
|
---|
| 24 | ///////////////////////////////////////////////////////////////////////////////
|
---|
| 25 |
|
---|
| 26 | // Utility.Parsers
|
---|
| 27 | #include <boost/spirit/utility/chset.hpp>
|
---|
| 28 | #include <boost/spirit/utility/chset_operators.hpp>
|
---|
| 29 | #include <boost/spirit/utility/escape_char.hpp>
|
---|
| 30 | #include <boost/spirit/utility/functor_parser.hpp>
|
---|
| 31 | #include <boost/spirit/utility/loops.hpp>
|
---|
| 32 | #include <boost/spirit/utility/confix.hpp>
|
---|
| 33 | #include <boost/spirit/utility/lists.hpp>
|
---|
| 34 | #include <boost/spirit/utility/distinct.hpp>
|
---|
| 35 |
|
---|
| 36 | // Utility.Support
|
---|
| 37 | #include <boost/spirit/utility/flush_multi_pass.hpp>
|
---|
| 38 | #include <boost/spirit/utility/scoped_lock.hpp>
|
---|
| 39 |
|
---|
| 40 |
|
---|
| 41 | #endif // !defined(BOOST_SPIRIT_UTILITY_MAIN_HPP)
|
---|