]> git.lyx.org Git - lyx.git/blob - boost/boost/detail/container_fwd.hpp
update to boost 1.46.1. Tested on Win, Mac, Linux, GCC 4.2, 4.4, 4.5, 4.6
[lyx.git] / boost / boost / detail / container_fwd.hpp
1
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)
5
6 #if !defined(BOOST_DETAIL_CONTAINER_FWD_HPP)
7 #define BOOST_DETAIL_CONTAINER_FWD_HPP
8
9 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
10 # pragma once
11 #endif
12
13 #include <boost/config.hpp>
14 #include <boost/detail/workaround.hpp>
15
16 #if defined(BOOST_DETAIL_NO_CONTAINER_FWD) \
17     || ((defined(__GLIBCPP__) || defined(__GLIBCXX__)) \
18         && (defined(_GLIBCXX_DEBUG) || defined(_GLIBCXX_PARALLEL))) \
19     || BOOST_WORKAROUND(__BORLANDC__, > 0x551) \
20     || BOOST_WORKAROUND(__DMC__, BOOST_TESTED_AT(0x842)) \
21     || (defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION))
22
23 #include <deque>
24 #include <list>
25 #include <vector>
26 #include <map>
27 #include <set>
28 #include <bitset>
29 #include <string>
30 #include <complex>
31
32 #else
33
34 #include <cstddef>
35
36 #if !defined(__SGI_STL_PORT) && !defined(_STLPORT_VERSION) && \
37         defined(__STL_CONFIG_H)
38
39 #define BOOST_CONTAINER_FWD_BAD_BITSET
40
41 #if !defined(__STL_NON_TYPE_TMPL_PARAM_BUG)
42 #define BOOST_CONTAINER_FWD_BAD_DEQUE
43 #endif
44
45 #endif
46
47 #if defined(BOOST_CONTAINER_FWD_BAD_DEQUE)
48 #include <deque>
49 #endif
50
51 #if defined(BOOST_CONTAINER_FWD_BAD_BITSET)
52 #include <bitset>
53 #endif
54
55 #if defined(BOOST_MSVC)
56 #pragma warning(push)
57 #pragma warning(disable:4099) // struct/class mismatch in fwd declarations
58 #endif
59
60 namespace std
61 {
62     template <class T> class allocator;
63     template <class charT, class traits, class Allocator> class basic_string;
64
65 #if BOOST_WORKAROUND(__GNUC__, < 3) && !defined(__SGI_STL_PORT) && !defined(_STLPORT_VERSION)
66     template <class charT> struct string_char_traits;
67 #else
68     template <class charT> struct char_traits;
69 #endif
70
71     #if BOOST_CLANG
72         template <class T> struct complex;
73     #else
74         template <class T> class complex;
75     #endif
76 }
77
78 // gcc 3.4 and greater
79 namespace std
80 {
81 #if !defined(BOOST_CONTAINER_FWD_BAD_DEQUE)
82     template <class T, class Allocator> class deque;
83 #endif
84
85     template <class T, class Allocator> class list;
86     template <class T, class Allocator> class vector;
87     template <class Key, class T, class Compare, class Allocator> class map;
88     template <class Key, class T, class Compare, class Allocator>
89     class multimap;
90     template <class Key, class Compare, class Allocator> class set;
91     template <class Key, class Compare, class Allocator> class multiset;
92
93 #if !defined(BOOST_CONTAINER_FWD_BAD_BITSET)
94     template <size_t N> class bitset;
95 #endif
96     template <class T1, class T2> struct pair;
97 }
98
99 #if defined(BOOST_MSVC)
100 #pragma warning(pop)
101 #endif
102
103 #endif
104
105 #endif