initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / src / OpenFOAM / containers / HashTables / HashSet / HashSet.H
blob654b743add6a5bbf96b03a8a3a8f148a8a623bb1
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2008 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software; you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation; either version 2 of the License, or (at your
14     option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM; if not, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 Class
26     Foam::HashSet
28 Description
29     A HashTable with word keys but without contents.
31 Typedef
32     Foam::wordHashSet
34 Description
35     A HashSet with (the default) word keys.
37 \*---------------------------------------------------------------------------*/
39 #ifndef HashSet_H
40 #define HashSet_H
42 #include "HashTable.H"
43 #include "empty.H"
45 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
47 namespace Foam
50 /*---------------------------------------------------------------------------*\
51                            Class HashSet Declaration
52 \*---------------------------------------------------------------------------*/
54 template<class Key=word, class Hash=string::hash>
55 class HashSet
57     public HashTable<empty, Key, Hash>
60 public:
62     // Constructors
64         //- Construct given initial map size
65         HashSet(label size = 100)
66         :
67             HashTable<empty, Key, Hash>(size)
68         {}
70         //- Construct from Istream
71         HashSet(Istream& is)
72         :
73             HashTable<empty, Key, Hash>(is)
74         {}
76         //- Construct from UList of Key
77         HashSet(const UList<Key>& ul)
78         :
79             HashTable<empty, Key, Hash>(2*ul.size())
80         {
81             forAll (ul, i)
82             {
83                 insert(ul[i]);
84             }
85         }
87         //- Construct as copy
88         HashSet(const HashSet<Key, Hash>& hs)
89         :
90             HashTable<empty, Key, Hash>(hs)
91         {}
94     // Member Functions
96         // Edit
98             //- Insert a new hashedEntry
99             bool insert(const Key& key)
100             {
101                 return HashTable<empty, Key, Hash>::insert(key, empty());
102             }
106 typedef HashSet<> wordHashSet;
109 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
111 } // End namespace Foam
113 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
115 #endif
117 // ************************************************************************* //