1 /* ///////////////////////////////////////////////////////////////////////
2 * File: pair_selector.h
7 * Brief: The pair selector
10 * Copyright (c) 2008-2020, Waruqi All rights reserved.
11 * //////////////////////////////////////////////////////////////////// */
13 #ifndef EXTL_CONTAINER_PAIR_SELECTOR_H
14 #define EXTL_CONTAINER_PAIR_SELECTOR_H
16 /*!\file pair_selector.h
17 * \brief The pair selector
20 # error pair_selector.h need be supported by c++.
23 /* ///////////////////////////////////////////////////////////////////////
26 #include "basic_pair.h"
28 /* ///////////////////////////////////////////////////////////////////////
33 /*!\brief pair_selector class
35 * \param T1 The first type
36 * \param T2 The second type
38 * \ingroup extl_group_memory
40 template< typename_param_k T1
47 typedef basic_pair
<T1
, T2
> pair_type
;
51 /* ///////////////////////////////////////////////////////////////////////
56 /* //////////////////////////////////////////////////////////////////// */
57 #endif /* EXTL_CONTAINER_PAIR_SELECTOR_H */
58 /* //////////////////////////////////////////////////////////////////// */