adapted.hpp 1.0 KB

1234567891011121314151617181920212223242526
  1. /*=============================================================================
  2. Copyright (c) 2001-2011 Joel de Guzman
  3. Copyright (c) 2005-2006 Dan Marsden
  4. Distributed under the Boost Software License, Version 1.0. (See accompanying
  5. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. ==============================================================================*/
  7. #if !defined(BOOST_FUSION_ADAPTED_30122005_1420)
  8. #define BOOST_FUSION_ADAPTED_30122005_1420
  9. #include <boost/fusion/support/config.hpp>
  10. #include <boost/fusion/adapted/adt.hpp>
  11. #include <boost/fusion/adapted/array.hpp>
  12. #include <boost/fusion/adapted/boost_array.hpp>
  13. #include <boost/fusion/adapted/boost_tuple.hpp>
  14. #include <boost/fusion/adapted/mpl.hpp>
  15. #include <boost/fusion/adapted/std_pair.hpp>
  16. #include <boost/fusion/adapted/struct.hpp>
  17. // The std_tuple_iterator adaptor only supports implementations
  18. // using variadic templates
  19. #if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
  20. #include <boost/fusion/adapted/std_tuple.hpp>
  21. #endif
  22. #endif