OSDN Git Service

2007-02-22 Paolo Carlini <pcarlini@suse.de>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / tr1 / 6_containers / headers / unordered_map / synopsis.cc
1 // { dg-do compile }
2
3 // 2007-02-04  Benjamin Kosnik  <bkoz@redhat.com>
4 //
5 // Copyright (C) 2007 Free Software Foundation, Inc.
6 //
7 // This file is part of the GNU ISO C++ Library.  This library is free
8 // software; you can redistribute it and/or modify it under the
9 // terms of the GNU General Public License as published by the
10 // Free Software Foundation; either version 2, or (at your option)
11 // any later version.
12 //
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this library; see the file COPYING.  If not, write to
20 // the Free Software Foundation, 51 Franklin Street, Fifth Floor,
21 // Boston, MA 02110-1301, USA.
22
23 #include <tr1/unordered_map>
24
25 namespace std {
26 namespace tr1 {
27
28   // [6.3.4.4] Class template unordered_map
29   template <class Key,
30             class T,
31             class Hash,
32             class Pred,
33             class Alloc>
34   class unordered_map;
35
36   // [6.3.4.6] Class template unordered_multimap
37   template <class Key,
38             class T,
39             class Hash,
40             class Pred,
41             class Alloc>
42   class unordered_multimap;
43
44 template <class Key, class T, class Hash, class Pred, class Alloc>
45   void swap(unordered_map<Key, T, Hash, Pred, Alloc>& x,
46             unordered_map<Key, T, Hash, Pred, Alloc>& y);
47 template <class Key, class T, class Hash, class Pred, class Alloc>
48   void swap(unordered_multimap<Key, T, Hash, Pred, Alloc>& x,
49             unordered_multimap<Key, T, Hash, Pred, Alloc>& y);
50
51 } // namespace tr1
52 } // namespace std
53