core.hpp 1.0 KB

123456789101112131415161718192021222324252627282930
  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. #ifndef BOOST_PROTO_CORE_HPP_EAN_04_01_2005
  10. #define BOOST_PROTO_CORE_HPP_EAN_04_01_2005
  11. #include <boost/proto/proto_fwd.hpp>
  12. #include <boost/proto/args.hpp>
  13. #include <boost/proto/tags.hpp>
  14. #include <boost/proto/eval.hpp>
  15. #include <boost/proto/expr.hpp>
  16. #include <boost/proto/repeat.hpp>
  17. #include <boost/proto/traits.hpp>
  18. #include <boost/proto/domain.hpp>
  19. #include <boost/proto/fusion.hpp>
  20. #include <boost/proto/matches.hpp>
  21. #include <boost/proto/extends.hpp>
  22. #include <boost/proto/literal.hpp>
  23. #include <boost/proto/generate.hpp>
  24. #include <boost/proto/operators.hpp>
  25. #include <boost/proto/deep_copy.hpp>
  26. #include <boost/proto/make_expr.hpp>
  27. #endif