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