transform.hpp 950 B

123456789101112131415161718192021222324
  1. ///////////////////////////////////////////////////////////////////////////////
  2. /// \file transform.hpp
  3. /// Includes all the transforms in the transform/ sub-directory.
  4. //
  5. // Copyright 2008 Eric Niebler. Distributed under the Boost
  6. // Software License, Version 1.0. (See accompanying file
  7. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  8. #ifndef BOOST_PROTO_TRANSFORM_HPP_EAN_06_23_2007
  9. #define BOOST_PROTO_TRANSFORM_HPP_EAN_06_23_2007
  10. #include <boost/proto/transform/arg.hpp>
  11. #include <boost/proto/transform/call.hpp>
  12. #include <boost/proto/transform/default.hpp>
  13. #include <boost/proto/transform/env.hpp>
  14. #include <boost/proto/transform/fold.hpp>
  15. #include <boost/proto/transform/fold_tree.hpp>
  16. #include <boost/proto/transform/integral_c.hpp>
  17. #include <boost/proto/transform/lazy.hpp>
  18. #include <boost/proto/transform/make.hpp>
  19. #include <boost/proto/transform/pass_through.hpp>
  20. #include <boost/proto/transform/when.hpp>
  21. #endif