PtrListDictionary.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | Copyright (C) 2015-2016 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
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
13  the Free Software Foundation, either version 3 of the License, or
14  (at your option) any later version.
15 
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.
20 
21  You should have received a copy of the GNU General Public License
22  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
23 
24 Class
25  Foam::PtrListDictionary
26 
27 Description
28  Template dictionary class which manages the storage associated with it.
29 
30  It is derived from DictionaryBase instantiated on the memory managed PtrList
31  of <T> to provide ordered indexing in addition to the dictionary lookup.
32 
33 SourceFiles
34  PtrListDictionary.C
35 
36 \*---------------------------------------------------------------------------*/
37 
38 #ifndef PtrListDictionary_H
39 #define PtrListDictionary_H
40 
41 #include "DictionaryBase.H"
42 #include "PtrList.H"
43 
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 
46 namespace Foam
47 {
48 
49 /*---------------------------------------------------------------------------*\
50  Class PtrListDictionary Declaration
51 \*---------------------------------------------------------------------------*/
52 
53 template<class T>
55 :
56  public DictionaryBase<PtrList<T>, T>
57 {
58 
59 public:
60 
61  // Constructors
62 
63  //- Construct given initial list size
65 
66  //- Copy construct
68 
69  //- Construct from Istream using given Istream constructor class
70  template<class INew>
71  PtrListDictionary(Istream&, const INew&);
72 
73  //- Construct from Istream
75 
76 
77  // Member functions
78 
79  //- Set element to pointer provided and return old element
80  autoPtr<T> set(const label, const word& key, T*);
81 
82  //- Set element to autoPtr value provided and return old element
83  autoPtr<T> set(const label, const word& key, autoPtr<T>&);
84 
85  //- Set element to tmp value provided and return old element
86  autoPtr<T> set(const label, const word& key, tmp<T>&);
87 
88 
89  // Member operators
90 
91  using PtrList<T>::operator[];
92 
93  //- Find and return entry
94  const T& operator[](const word& key) const
95  {
96  return *DictionaryBase<PtrList<T>, T>::operator[](key);
97  }
98 
99  //- Find and return entry
100  T& operator[](const word& key)
101  {
102  return *DictionaryBase<PtrList<T>, T>::operator[](key);
103  }
104 };
105 
106 
107 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
108 
109 } // End namespace Foam
110 
111 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
112 
113 #ifdef NoRepository
114  #include "PtrListDictionary.C"
115 #endif
116 
117 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
118 
119 #endif
120 
121 // ************************************************************************* //
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
Definition: label.H:59
PtrListDictionary(const label size)
Construct given initial list size.
Base dictionary class templated on both the form of doubly-linked list it uses as well as the type it...
An Istream is an abstract base class for all input systems (streams, files, token lists etc)...
Definition: Istream.H:57
friend Ostream & operator(Ostream &, const DictionaryBase< PtrList< T >, T > &)
Template dictionary class which manages the storage associated with it.
A class for handling words, derived from string.
Definition: word.H:59
void T(FieldField< Field, Type > &f1, const FieldField< Field, Type > &f2)
A templated 1D list of pointers to objects of type <T>, where the size of the array is known and used...
Definition: List.H:62
A helper class when constructing from an Istream or dictionary.
Definition: INew.H:49
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: PtrList.H:53
A class for managing temporary objects.
Definition: PtrList.H:54
const T & operator[](const word &key) const
Find and return entry.
Namespace for OpenFOAM.
label size() const
Return the number of elements in the UPtrList.
Definition: UPtrListI.H:29