sl@0
|
1 |
// (C) Copyright Steve Cleary, Beman Dawes, Howard Hinnant & John Maddock 2000.
|
sl@0
|
2 |
// Use, modification and distribution are subject to the Boost Software License,
|
sl@0
|
3 |
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
sl@0
|
4 |
// http://www.boost.org/LICENSE_1_0.txt).
|
sl@0
|
5 |
//
|
sl@0
|
6 |
// See http://www.boost.org/libs/utility for most recent version including documentation.
|
sl@0
|
7 |
|
sl@0
|
8 |
// See boost/detail/compressed_pair.hpp and boost/detail/ob_compressed_pair.hpp
|
sl@0
|
9 |
// for full copyright notices.
|
sl@0
|
10 |
|
sl@0
|
11 |
#ifndef BOOST_COMPRESSED_PAIR_HPP
|
sl@0
|
12 |
#define BOOST_COMPRESSED_PAIR_HPP
|
sl@0
|
13 |
|
sl@0
|
14 |
#ifndef BOOST_CONFIG_HPP
|
sl@0
|
15 |
#include <boost/config.hpp>
|
sl@0
|
16 |
#endif
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifdef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
|
sl@0
|
19 |
#include <boost/detail/ob_compressed_pair.hpp>
|
sl@0
|
20 |
#else
|
sl@0
|
21 |
#include <boost/detail/compressed_pair.hpp>
|
sl@0
|
22 |
#endif
|
sl@0
|
23 |
|
sl@0
|
24 |
#endif // BOOST_COMPRESSED_PAIR_HPP
|