os/ossrv/ossrv_pub/boost_apis/boost/functional/hash_fwd.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
sl@0
     2
//  Copyright Daniel James 2005-2006. Use, modification, and distribution are
sl@0
     3
//  subject to the Boost Software License, Version 1.0. (See accompanying
sl@0
     4
//  file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
sl@0
     5
sl@0
     6
//  Based on Peter Dimov's proposal
sl@0
     7
//  http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2005/n1756.pdf
sl@0
     8
//  issue 6.18. 
sl@0
     9
sl@0
    10
#if !defined(BOOST_FUNCTIONAL_HASH_FWD_HPP)
sl@0
    11
#define BOOST_FUNCTIONAL_HASH_FWD_HPP
sl@0
    12
sl@0
    13
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
sl@0
    14
# pragma once
sl@0
    15
#endif
sl@0
    16
sl@0
    17
#include <boost/config.hpp>
sl@0
    18
#include <cstddef>
sl@0
    19
#include <boost/detail/workaround.hpp>
sl@0
    20
sl@0
    21
namespace boost
sl@0
    22
{
sl@0
    23
    template <class T> struct hash;
sl@0
    24
sl@0
    25
#if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
sl@0
    26
    template <class T> void hash_combine(std::size_t& seed, T& v);
sl@0
    27
#else
sl@0
    28
    template <class T> void hash_combine(std::size_t& seed, T const& v);
sl@0
    29
#endif
sl@0
    30
sl@0
    31
    template <class It> std::size_t hash_range(It, It);
sl@0
    32
    template <class It> void hash_range(std::size_t&, It, It);
sl@0
    33
sl@0
    34
#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x551))
sl@0
    35
    template <class T> inline std::size_t hash_range(T*, T*);
sl@0
    36
    template <class T> inline void hash_range(std::size_t&, T*, T*);
sl@0
    37
#endif
sl@0
    38
}
sl@0
    39
sl@0
    40
#endif