OSDN Git Service

2007-02-22 Paolo Carlini <pcarlini@suse.de>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / tr1 / 6_containers / headers / unordered_set / 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_set>
24
25 namespace std {
26 namespace tr1 {
27
28   // [6.3.4.3] Class template unordered_set
29   template <class Value,
30             class Hash,
31             class Pred,
32             class Alloc>
33      class unordered_set;
34
35   // [6.3.4.5] Class template unordered_multiset
36   template <class Value,
37             class Hash,
38             class Pred,
39             class Alloc>
40      class unordered_multiset;
41
42   template <class Value, class Hash, class Pred, class Alloc>
43      void swap(unordered_set<Value, Hash, Pred, Alloc>& x,
44                unordered_set<Value, Hash, Pred, Alloc>& y);
45
46   template <class Value, class Hash, class Pred, class Alloc>
47      void swap(unordered_multiset<Value, Hash, Pred, Alloc>& x,
48                unordered_multiset<Value, Hash, Pred, Alloc>& y);
49
50 } // namespace tr1
51 } // namespace std
52