33 lines
1.3 KiB
C++
Executable File
33 lines
1.3 KiB
C++
Executable File
///////////////////////////////////////////////////////////////////////////////
|
|
/// \file proto.hpp
|
|
/// Includes the core of Proto. Not included are the contexts, transforms and
|
|
/// debugging utilities.
|
|
//
|
|
// Copyright 2008 Eric Niebler. Distributed under the Boost
|
|
// Software License, Version 1.0. (See accompanying file
|
|
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
#ifndef BOOST_PROTO_HPP_EAN_04_01_2005
|
|
#define BOOST_PROTO_HPP_EAN_04_01_2005
|
|
|
|
#include <boost/xpressive/proto/detail/prefix.hpp>
|
|
#include <boost/xpressive/proto/proto_fwd.hpp>
|
|
#include <boost/xpressive/proto/ref.hpp>
|
|
#include <boost/xpressive/proto/args.hpp>
|
|
#include <boost/xpressive/proto/tags.hpp>
|
|
#include <boost/xpressive/proto/eval.hpp>
|
|
#include <boost/xpressive/proto/expr.hpp>
|
|
#include <boost/xpressive/proto/traits.hpp>
|
|
#include <boost/xpressive/proto/domain.hpp>
|
|
#include <boost/xpressive/proto/fusion.hpp>
|
|
#include <boost/xpressive/proto/matches.hpp>
|
|
#include <boost/xpressive/proto/extends.hpp>
|
|
#include <boost/xpressive/proto/literal.hpp>
|
|
#include <boost/xpressive/proto/generate.hpp>
|
|
#include <boost/xpressive/proto/operators.hpp>
|
|
#include <boost/xpressive/proto/deep_copy.hpp>
|
|
#include <boost/xpressive/proto/make_expr.hpp>
|
|
#include <boost/xpressive/proto/detail/suffix.hpp>
|
|
|
|
#endif
|