sl@0
|
1 |
//
|
sl@0
|
2 |
// Boost.Pointer Container
|
sl@0
|
3 |
//
|
sl@0
|
4 |
// Copyright Thorsten Ottosen 2003-2005. Use, modification and
|
sl@0
|
5 |
// distribution is subject to the Boost Software License, Version
|
sl@0
|
6 |
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
sl@0
|
7 |
// http://www.boost.org/LICENSE_1_0.txt)
|
sl@0
|
8 |
//
|
sl@0
|
9 |
// For more information, see http://www.boost.org/libs/ptr_container/
|
sl@0
|
10 |
//
|
sl@0
|
11 |
|
sl@0
|
12 |
#include <boost/ptr_container/ptr_sequence_adapter.hpp>
|
sl@0
|
13 |
#include <vector>
|
sl@0
|
14 |
#include <boost/ptr_container/ptr_map_adapter.hpp>
|
sl@0
|
15 |
#include <map>
|
sl@0
|
16 |
|
sl@0
|
17 |
template< class T >
|
sl@0
|
18 |
struct my_ptr_vector :
|
sl@0
|
19 |
public boost::ptr_sequence_adapter< std::vector<T*> >
|
sl@0
|
20 |
{
|
sl@0
|
21 |
|
sl@0
|
22 |
};
|
sl@0
|
23 |
|
sl@0
|
24 |
|
sl@0
|
25 |
template< class Key, class T, class Pred = std::less<Key>,
|
sl@0
|
26 |
class Allocator = std::allocator< std::pair<const Key, T> > >
|
sl@0
|
27 |
struct my_map : public std::map<Key,T,Pred,Allocator>
|
sl@0
|
28 |
{
|
sl@0
|
29 |
explicit my_map( const Pred& pred = Pred(),
|
sl@0
|
30 |
const Allocator& alloc = Allocator() )
|
sl@0
|
31 |
{ }
|
sl@0
|
32 |
};
|
sl@0
|
33 |
|
sl@0
|
34 |
#include <string>
|
sl@0
|
35 |
struct Foo {};
|
sl@0
|
36 |
|
sl@0
|
37 |
typedef boost::ptr_map_adapter< my_map<std::string,Foo*> > foo_map;
|
sl@0
|
38 |
|
sl@0
|
39 |
template< class Key, class T, class Pred = std::less<Key> >
|
sl@0
|
40 |
struct my_ptr_map : public boost::ptr_map_adapter< std::map<Key,T*,Pred> >
|
sl@0
|
41 |
{
|
sl@0
|
42 |
|
sl@0
|
43 |
};
|
sl@0
|
44 |
|
sl@0
|
45 |
typedef my_ptr_map<std::string,Foo> foo_map2;
|
sl@0
|
46 |
|
sl@0
|
47 |
|
sl@0
|
48 |
int main()
|
sl@0
|
49 |
{
|
sl@0
|
50 |
|
sl@0
|
51 |
my_ptr_vector<Foo> vec;
|
sl@0
|
52 |
vec.push_back( new Foo );
|
sl@0
|
53 |
foo_map m1;
|
sl@0
|
54 |
foo_map2 m2;
|
sl@0
|
55 |
std::string s("");
|
sl@0
|
56 |
m1.insert( s, new Foo );
|
sl@0
|
57 |
m2.insert( s, new Foo );
|
sl@0
|
58 |
|
sl@0
|
59 |
|
sl@0
|
60 |
}
|
sl@0
|
61 |
|