vector_fwd.hpp 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*=============================================================================
  2. Copyright (c) 1999-2003 Jaakko Jarvi
  3. Copyright (c) 2001-2011 Joel de Guzman
  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(FUSION_VECTOR_FORWARD_07072005_0125)
  8. #define FUSION_VECTOR_FORWARD_07072005_0125
  9. #include <boost/fusion/support/config.hpp>
  10. #include <boost/fusion/container/vector/detail/cpp03/limits.hpp>
  11. #include <boost/preprocessor/repetition/enum_params_with_a_default.hpp>
  12. #include <boost/fusion/container/vector/detail/cpp03/vector10.hpp>
  13. #if (FUSION_MAX_VECTOR_SIZE > 10)
  14. #include <boost/fusion/container/vector/detail/cpp03/vector20.hpp>
  15. #endif
  16. #if (FUSION_MAX_VECTOR_SIZE > 20)
  17. #include <boost/fusion/container/vector/detail/cpp03/vector30.hpp>
  18. #endif
  19. #if (FUSION_MAX_VECTOR_SIZE > 30)
  20. #include <boost/fusion/container/vector/detail/cpp03/vector40.hpp>
  21. #endif
  22. #if (FUSION_MAX_VECTOR_SIZE > 40)
  23. #include <boost/fusion/container/vector/detail/cpp03/vector50.hpp>
  24. #endif
  25. #if !defined(BOOST_FUSION_DONT_USE_PREPROCESSED_FILES)
  26. #include <boost/fusion/container/vector/detail/cpp03/preprocessed/vector_fwd.hpp>
  27. #else
  28. #if defined(__WAVE__) && defined(BOOST_FUSION_CREATE_PREPROCESSED_FILES)
  29. #pragma wave option(preserve: 2, line: 0, output: "preprocessed/vvector" FUSION_MAX_VECTOR_SIZE_STR "_fwd.hpp")
  30. #endif
  31. /*=============================================================================
  32. Copyright (c) 2001-2011 Joel de Guzman
  33. Distributed under the Boost Software License, Version 1.0. (See accompanying
  34. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  35. This is an auto-generated file. Do not edit!
  36. ==============================================================================*/
  37. #if defined(__WAVE__) && defined(BOOST_FUSION_CREATE_PREPROCESSED_FILES)
  38. #pragma wave option(preserve: 1)
  39. #endif
  40. namespace boost { namespace fusion
  41. {
  42. struct void_;
  43. template <
  44. BOOST_PP_ENUM_PARAMS_WITH_A_DEFAULT(
  45. FUSION_MAX_VECTOR_SIZE, typename T, void_)
  46. >
  47. struct vector;
  48. }}
  49. #if defined(__WAVE__) && defined(BOOST_FUSION_CREATE_PREPROCESSED_FILES)
  50. #pragma wave option(output: null)
  51. #endif
  52. #endif // BOOST_FUSION_DONT_USE_PREPROCESSED_FILES
  53. #endif