vector10_fwd.hpp 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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_VECTOR10_FWD_HPP_INCLUDED)
  9. #define BOOST_FUSION_VECTOR10_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. namespace boost { namespace fusion
  15. {
  16. template <typename Dummy = void>
  17. struct vector0;
  18. }}
  19. #if !defined(BOOST_FUSION_DONT_USE_PREPROCESSED_FILES)
  20. #include <boost/fusion/container/vector/detail/cpp03/preprocessed/vector10_fwd.hpp>
  21. #else
  22. #if defined(__WAVE__) && defined(BOOST_FUSION_CREATE_PREPROCESSED_FILES)
  23. #pragma wave option(preserve: 2, line: 0, output: "preprocessed/vector10_fwd.hpp")
  24. #endif
  25. /*=============================================================================
  26. Copyright (c) 2011 Eric Niebler
  27. Copyright (c) 2001-2011 Joel de Guzman
  28. Distributed under the Boost Software License, Version 1.0. (See accompanying
  29. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  30. This is an auto-generated file. Do not edit!
  31. ==============================================================================*/
  32. #if defined(__WAVE__) && defined(BOOST_FUSION_CREATE_PREPROCESSED_FILES)
  33. #pragma wave option(preserve: 1)
  34. #endif
  35. namespace boost { namespace fusion
  36. {
  37. // expand vector1 to vector10
  38. #define BOOST_PP_FILENAME_1 <boost/fusion/container/vector/detail/cpp03/vector10_fwd.hpp>
  39. #define BOOST_PP_ITERATION_LIMITS (1, 10)
  40. #include BOOST_PP_ITERATE()
  41. }}
  42. #if defined(__WAVE__) && defined(BOOST_FUSION_CREATE_PREPROCESSED_FILES)
  43. #pragma wave option(output: null)
  44. #endif
  45. #endif // BOOST_FUSION_DONT_USE_PREPROCESSED_FILES
  46. #endif
  47. #else
  48. template <BOOST_PP_ENUM_PARAMS(BOOST_PP_ITERATION(), typename T)>
  49. struct BOOST_PP_CAT(vector, BOOST_PP_ITERATION());
  50. #endif