vector50.hpp 1.2 KB

1234567891011121314151617181920212223242526272829
  1. /*=============================================================================
  2. Copyright (c) 2014 Kohei Takahashi
  3. Distributed under the Boost Software License, Version 1.0. (See accompanying
  4. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. ==============================================================================*/
  6. #ifndef FUSION_VECTOR50_11052014_2316
  7. #define FUSION_VECTOR50_11052014_2316
  8. #include <boost/config.hpp>
  9. #include <boost/fusion/support/config.hpp>
  10. #include <boost/fusion/container/vector/detail/config.hpp>
  11. ///////////////////////////////////////////////////////////////////////////////
  12. // Without variadics, we will use the PP version
  13. ///////////////////////////////////////////////////////////////////////////////
  14. #if !defined(BOOST_FUSION_HAS_VARIADIC_VECTOR)
  15. # include <boost/fusion/container/vector/detail/cpp03/vector50.hpp>
  16. #else
  17. ///////////////////////////////////////////////////////////////////////////////
  18. // C++11 interface
  19. ///////////////////////////////////////////////////////////////////////////////
  20. #include <boost/fusion/container/vector/vector_fwd.hpp>
  21. #include <boost/fusion/container/vector/vector.hpp>
  22. #endif
  23. #endif