source: NonGTP/Boost/boost/spirit/core/composite/operators.hpp @ 857

Revision 857, 1.2 KB checked in by igarcia, 18 years ago (diff)
Line 
1/*=============================================================================
2    Copyright (c) 1998-2003 Joel de Guzman
3    Copyright (c) 2001 Daniel Nuffer
4    Copyright (c) 2002 Hartmut Kaiser
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#if !defined(BOOST_SPIRIT_OPERATORS_HPP)
12#define BOOST_SPIRIT_OPERATORS_HPP
13
14#include <boost/spirit/core/composite/sequence.hpp>
15#include <boost/spirit/core/composite/sequential_and.hpp>
16#include <boost/spirit/core/composite/sequential_or.hpp>
17#include <boost/spirit/core/composite/alternative.hpp>
18#include <boost/spirit/core/composite/difference.hpp>
19#include <boost/spirit/core/composite/intersection.hpp>
20#include <boost/spirit/core/composite/exclusive_or.hpp>
21#include <boost/spirit/core/composite/kleene_star.hpp>
22#include <boost/spirit/core/composite/positive.hpp>
23#include <boost/spirit/core/composite/optional.hpp>
24#include <boost/spirit/core/composite/list.hpp>
25
26#endif
Note: See TracBrowser for help on using the repository browser.