2 // Copyright 2005-2008 Daniel James.
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)
6 #if !defined(BOOST_DETAIL_CONTAINER_FWD_HPP)
7 #define BOOST_DETAIL_CONTAINER_FWD_HPP
9 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
13 #include <boost/config.hpp>
14 #include <boost/detail/workaround.hpp>
16 #if BOOST_WORKAROUND(__GNUC__, < 3) && !defined(__SGI_STL_PORT) && !defined(_STLPORT_VERSION)
17 #define BOOST_HASH_CHAR_TRAITS string_char_traits
19 #define BOOST_HASH_CHAR_TRAITS char_traits
22 #if ((defined(__GLIBCPP__) || defined(__GLIBCXX__)) && defined(_GLIBCXX_DEBUG)) \
23 || BOOST_WORKAROUND(__BORLANDC__, > 0x551) \
24 || BOOST_WORKAROUND(__DMC__, BOOST_TESTED_AT(0x842)) \
25 || (defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION))
40 #if !defined(__SGI_STL_PORT) && !defined(_STLPORT_VERSION) && \
41 defined(__STL_CONFIG_H)
43 #define BOOST_CONTAINER_FWD_BAD_BITSET
45 #if !defined(__STL_NON_TYPE_TMPL_PARAM_BUG)
46 #define BOOST_CONTAINER_FWD_BAD_DEQUE
51 #if defined(BOOST_CONTAINER_FWD_BAD_DEQUE)
55 #if defined(BOOST_CONTAINER_FWD_BAD_BITSET)
59 #if defined(BOOST_MSVC)
61 #pragma warning(disable:4099) // struct/class mismatch in fwd declarations
66 template <class T
> class allocator
;
67 template <class charT
, class traits
, class Allocator
> class basic_string
;
68 template <class charT
> struct BOOST_HASH_CHAR_TRAITS
;
69 template <class T
> class complex;
72 // gcc 3.4 and greater
75 #if !defined(BOOST_CONTAINER_FWD_BAD_DEQUE)
76 template <class T
, class Allocator
> class deque
;
79 template <class T
, class Allocator
> class list
;
80 template <class T
, class Allocator
> class vector
;
81 template <class Key
, class T
, class Compare
, class Allocator
> class map
;
82 template <class Key
, class T
, class Compare
, class Allocator
>
84 template <class Key
, class Compare
, class Allocator
> class set
;
85 template <class Key
, class Compare
, class Allocator
> class multiset
;
87 #if !defined(BOOST_CONTAINER_FWD_BAD_BITSET)
88 template <size_t N
> class bitset
;
90 template <class T1
, class T2
> struct pair
;
93 #if defined(BOOST_MSVC)