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