circular_buffer.hpp 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. // Circular buffer library header file.
  2. // Copyright (c) 2003-2008 Jan Gaspar
  3. // Use, modification, and distribution is subject to the Boost Software
  4. // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  5. // http://www.boost.org/LICENSE_1_0.txt)
  6. // See www.boost.org/libs/circular_buffer for documentation.
  7. #if !defined(BOOST_CIRCULAR_BUFFER_HPP)
  8. #define BOOST_CIRCULAR_BUFFER_HPP
  9. #if defined(_MSC_VER)
  10. #pragma once
  11. #endif
  12. #include <boost/circular_buffer_fwd.hpp>
  13. #include <boost/detail/workaround.hpp>
  14. #include <boost/static_assert.hpp>
  15. // BOOST_CB_ENABLE_DEBUG: Debug support control.
  16. #if defined(NDEBUG) || defined(BOOST_CB_DISABLE_DEBUG)
  17. #define BOOST_CB_ENABLE_DEBUG 0
  18. #else
  19. #define BOOST_CB_ENABLE_DEBUG 1
  20. #endif
  21. // BOOST_CB_ASSERT: Runtime assertion.
  22. #if BOOST_CB_ENABLE_DEBUG
  23. #include <boost/assert.hpp>
  24. #define BOOST_CB_ASSERT(Expr) BOOST_ASSERT(Expr)
  25. #else
  26. #define BOOST_CB_ASSERT(Expr) ((void)0)
  27. #endif
  28. // BOOST_CB_IS_CONVERTIBLE: Check if Iterator::value_type is convertible to Type.
  29. #if BOOST_WORKAROUND(__BORLANDC__, <= 0x0550) || BOOST_WORKAROUND(__MWERKS__, <= 0x2407)
  30. #define BOOST_CB_IS_CONVERTIBLE(Iterator, Type) ((void)0)
  31. #else
  32. #include <boost/detail/iterator.hpp>
  33. #include <boost/type_traits/is_convertible.hpp>
  34. #define BOOST_CB_IS_CONVERTIBLE(Iterator, Type) \
  35. BOOST_STATIC_ASSERT((is_convertible<typename detail::iterator_traits<Iterator>::value_type, Type>::value))
  36. #endif
  37. // BOOST_CB_ASSERT_TEMPLATED_ITERATOR_CONSTRUCTORS:
  38. // Check if the STL provides templated iterator constructors for its containers.
  39. #if defined(BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS)
  40. #define BOOST_CB_ASSERT_TEMPLATED_ITERATOR_CONSTRUCTORS BOOST_STATIC_ASSERT(false);
  41. #else
  42. #define BOOST_CB_ASSERT_TEMPLATED_ITERATOR_CONSTRUCTORS ((void)0);
  43. #endif
  44. #include <boost/circular_buffer/debug.hpp>
  45. #include <boost/circular_buffer/details.hpp>
  46. #include <boost/circular_buffer/base.hpp>
  47. #include <boost/circular_buffer/space_optimized.hpp>
  48. #undef BOOST_CB_ASSERT_TEMPLATED_ITERATOR_CONSTRUCTORS
  49. #undef BOOST_CB_IS_CONVERTIBLE
  50. #undef BOOST_CB_ASSERT
  51. #undef BOOST_CB_ENABLE_DEBUG
  52. #endif // #if !defined(BOOST_CIRCULAR_BUFFER_HPP)