epoc32/include/stdapis/boost/multi_index/hashed_index_fwd.hpp
branchSymbian2
changeset 2 2fe1408b6811
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/epoc32/include/stdapis/boost/multi_index/hashed_index_fwd.hpp	Tue Mar 16 16:12:26 2010 +0000
     1.3 @@ -0,0 +1,58 @@
     1.4 +/* Copyright 2003-2005 Joaquín M López Muñoz.
     1.5 + * Distributed under the Boost Software License, Version 1.0.
     1.6 + * (See accompanying file LICENSE_1_0.txt or copy at
     1.7 + * http://www.boost.org/LICENSE_1_0.txt)
     1.8 + *
     1.9 + * See http://www.boost.org/libs/multi_index for library home page.
    1.10 + */
    1.11 +
    1.12 +#ifndef BOOST_MULTI_INDEX_HASHED_INDEX_FWD_HPP
    1.13 +#define BOOST_MULTI_INDEX_HASHED_INDEX_FWD_HPP
    1.14 +
    1.15 +#if defined(_MSC_VER)&&(_MSC_VER>=1200)
    1.16 +#pragma once
    1.17 +#endif
    1.18 +
    1.19 +#include <boost/multi_index/detail/hash_index_args.hpp>
    1.20 +
    1.21 +namespace boost{
    1.22 +
    1.23 +namespace multi_index{
    1.24 +
    1.25 +namespace detail{
    1.26 +
    1.27 +template<
    1.28 +  typename KeyFromValue,typename Hash,typename Pred,
    1.29 +  typename SuperMeta,typename TagList,typename Category
    1.30 +>
    1.31 +class hashed_index;
    1.32 +
    1.33 +template<
    1.34 +  typename KeyFromValue,typename Hash,typename Pred,
    1.35 +  typename SuperMeta,typename TagList,typename Category
    1.36 +>
    1.37 +void swap(
    1.38 +  hashed_index<KeyFromValue,Hash,Pred,SuperMeta,TagList,Category>& x,
    1.39 +  hashed_index<KeyFromValue,Hash,Pred,SuperMeta,TagList,Category>& y);
    1.40 +
    1.41 +} /* namespace multi_index::detail */
    1.42 +
    1.43 +/* hashed_index specifiers */
    1.44 +
    1.45 +template<
    1.46 +  typename Arg1,typename Arg2=mpl::na,
    1.47 +  typename Arg3=mpl::na,typename Arg4=mpl::na
    1.48 +>
    1.49 +struct hashed_unique;
    1.50 +
    1.51 +template<
    1.52 +  typename Arg1,typename Arg2=mpl::na,
    1.53 +  typename Arg3=mpl::na,typename Arg4=mpl::na
    1.54 +>
    1.55 +struct hashed_non_unique;
    1.56 +
    1.57 +} /* namespace multi_index */
    1.58 +
    1.59 +} /* namespace boost */
    1.60 +
    1.61 +#endif