Chris@16
|
1 ///////////////////////////////////////////////////////////////////////////////
|
Chris@16
|
2 /// \file core.hpp
|
Chris@16
|
3 /// Includes the core of Proto. Not included are the contexts, transforms and
|
Chris@16
|
4 /// debugging utilities.
|
Chris@16
|
5 //
|
Chris@16
|
6 // Copyright 2008 Eric Niebler. Distributed under the Boost
|
Chris@16
|
7 // Software License, Version 1.0. (See accompanying file
|
Chris@16
|
8 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
Chris@16
|
9
|
Chris@16
|
10 #ifndef BOOST_PROTO_CORE_HPP_EAN_04_01_2005
|
Chris@16
|
11 #define BOOST_PROTO_CORE_HPP_EAN_04_01_2005
|
Chris@16
|
12
|
Chris@16
|
13 #include <boost/proto/proto_fwd.hpp>
|
Chris@16
|
14 #include <boost/proto/args.hpp>
|
Chris@16
|
15 #include <boost/proto/tags.hpp>
|
Chris@16
|
16 #include <boost/proto/eval.hpp>
|
Chris@16
|
17 #include <boost/proto/expr.hpp>
|
Chris@16
|
18 #include <boost/proto/repeat.hpp>
|
Chris@16
|
19 #include <boost/proto/traits.hpp>
|
Chris@16
|
20 #include <boost/proto/domain.hpp>
|
Chris@16
|
21 #include <boost/proto/fusion.hpp>
|
Chris@16
|
22 #include <boost/proto/matches.hpp>
|
Chris@16
|
23 #include <boost/proto/extends.hpp>
|
Chris@16
|
24 #include <boost/proto/literal.hpp>
|
Chris@16
|
25 #include <boost/proto/generate.hpp>
|
Chris@16
|
26 #include <boost/proto/operators.hpp>
|
Chris@16
|
27 #include <boost/proto/deep_copy.hpp>
|
Chris@16
|
28 #include <boost/proto/make_expr.hpp>
|
Chris@16
|
29
|
Chris@16
|
30 #endif
|