]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/bimap/include/boost/bimap/support/key_type_by.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / bimap / include / boost / bimap / support / key_type_by.hpp
CommitLineData
7c673cae
FG
1// Boost.Bimap
2//
3// Copyright (c) 2006-2007 Matias Capeletto
4//
5// Distributed under the Boost Software License, Version 1.0.
6// (See accompanying file LICENSE_1_0.txt or copy at
7// http://www.boost.org/LICENSE_1_0.txt)
8
9/// \file support/key_type_by.hpp
10/// \brief Metafunction to access the set types of a bimap
11
12#ifndef BOOST_BIMAP_SUPPORT_KEY_TYPE_BY_HPP
13#define BOOST_BIMAP_SUPPORT_KEY_TYPE_BY_HPP
14
15#if defined(_MSC_VER)
16#pragma once
17#endif
18
19#include <boost/config.hpp>
20
21#include <boost/bimap/relation/detail/metadata_access_builder.hpp>
22
23/** \struct boost::bimaps::support::key_type_by
24
25\brief Metafunction to obtain the key type of one of the sides in a bimap
26
27The tag parameter can be either a user defined tag or \c member_at::{side}.
28The returned type is one of the {SetType}_of definition classes.
29
30\code
31
32template< class Tag, class Bimap >
33struct key_type_by
34{
35 typedef typename Bimap::{side}_key_type type;
36};
37
38\endcode
39
40See also member_at.
41\ingroup bimap_group
42 **/
43
44
45namespace boost {
46namespace bimaps {
47namespace support {
48
49// Implementation of key type type of metafunction
50
51BOOST_BIMAP_SYMMETRIC_METADATA_ACCESS_BUILDER
52(
53 key_type_by,
54 left_key_type,
55 right_key_type
56)
57
58
59} // namespace support
60} // namespace bimaps
61} // namespace boost
62
63#endif // BOOST_BIMAP_SUPPORT_KEY_TYPE_BY_HPP
64