vector20_fwd.hpp 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #ifndef BOOST_PP_IS_ITERATING
  2. /*=============================================================================
  3. Copyright (c) 2011 Eric Niebler
  4. Copyright (c) 2001-2011 Joel de Guzman
  5. Distributed under the Boost Software License, Version 1.0. (See accompanying
  6. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  7. ==============================================================================*/
  8. #if !defined(BOOST_FUSION_VECTOR20_FWD_HPP_INCLUDED)
  9. #define BOOST_FUSION_VECTOR20_FWD_HPP_INCLUDED
  10. #include <boost/fusion/support/config.hpp>
  11. #include <boost/preprocessor/cat.hpp>
  12. #include <boost/preprocessor/iteration/iterate.hpp>
  13. #include <boost/preprocessor/repetition/enum_params.hpp>
  14. #if !defined(BOOST_FUSION_DONT_USE_PREPROCESSED_FILES)
  15. #include <boost/fusion/container/vector/detail/cpp03/preprocessed/vector20_fwd.hpp>
  16. #else
  17. #if defined(__WAVE__) && defined(BOOST_FUSION_CREATE_PREPROCESSED_FILES)
  18. #pragma wave option(preserve: 2, line: 0, output: "preprocessed/vector20_fwd.hpp")
  19. #endif
  20. /*=============================================================================
  21. Copyright (c) 2011 Eric Niebler
  22. Copyright (c) 2001-2011 Joel de Guzman
  23. Distributed under the Boost Software License, Version 1.0. (See accompanying
  24. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  25. This is an auto-generated file. Do not edit!
  26. ==============================================================================*/
  27. #if defined(__WAVE__) && defined(BOOST_FUSION_CREATE_PREPROCESSED_FILES)
  28. #pragma wave option(preserve: 1)
  29. #endif
  30. namespace boost { namespace fusion
  31. {
  32. // expand vector11 to vector20
  33. #define BOOST_PP_FILENAME_1 <boost/fusion/container/vector/detail/cpp03/vector20_fwd.hpp>
  34. #define BOOST_PP_ITERATION_LIMITS (11, 20)
  35. #include BOOST_PP_ITERATE()
  36. }}
  37. #if defined(__WAVE__) && defined(BOOST_FUSION_CREATE_PREPROCESSED_FILES)
  38. #pragma wave option(output: null)
  39. #endif
  40. #endif // BOOST_FUSION_DONT_USE_PREPROCESSED_FILES
  41. #endif
  42. #else
  43. template <BOOST_PP_ENUM_PARAMS(BOOST_PP_ITERATION(), typename T)>
  44. struct BOOST_PP_CAT(vector, BOOST_PP_ITERATION());
  45. #endif