initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / OpenFOAM / containers / LinkedLists / accessTypes / ILList / ILList.C
blobd3ae8eb440414840efa77ffb1b6fd48dd264428a
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 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 \*---------------------------------------------------------------------------*/
27 #include "ILList.H"
29 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
31 template<class LListBase, class T>
32 Foam::ILList<LListBase, T>::ILList(const ILList<LListBase, T>& lst)
34     UILList<LListBase, T>()
36     for
37     (
38         typename UILList<LListBase, T>::const_iterator iter = lst.begin();
39         iter != lst.end();
40         ++iter
41     )
42     {
43         append(iter().clone().ptr());
44     }
48 #ifndef __INTEL_COMPILER
49 template<class LListBase, class T>
50 template<class CloneArg>
51 Foam::ILList<LListBase, T>::ILList
53     const ILList<LListBase, T>& lst,
54     const CloneArg& cloneArg
57     UILList<LListBase, T>()
59     for
60     (
61         typename UILList<LListBase, T>::const_iterator iter = lst.begin();
62         iter != lst.end();
63         ++iter
64     )
65     {
66         append(iter().clone(cloneArg).ptr());
67     }
69 #endif
72 // * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * * //
74 template<class LListBase, class T>
75 Foam::ILList<LListBase, T>::~ILList()
77     this->clear();
81 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
83 template<class LListBase, class T>
84 bool Foam::ILList<LListBase, T>::eraseHead()
86     T* tPtr;
87     if ((tPtr = this->removeHead()))
88     {
89         delete tPtr;
90         return true;
91     }
92     else
93     {
94         return false;
95     }
98 template<class LListBase, class T>
99 bool Foam::ILList<LListBase, T>::erase(T* p)
101     T* tPtr;
102     if ((tPtr = remove(p)))
103     {
104         delete tPtr;
105         return true;
106     }
107     else
108     {
109         return false;
110     }
114 template<class LListBase, class T>
115 void Foam::ILList<LListBase, T>::clear()
117     label oldSize = this->size();
118     for (label i=0; i<oldSize; i++)
119     {
120         eraseHead();
121     }
123     LListBase::clear();
127 template<class LListBase, class T>
128 void Foam::ILList<LListBase, T>::transfer(ILList<LListBase, T>& lst)
130     clear();
131     LListBase::transfer(lst);
135 // * * * * * * * * * * * * * * * Member Operators  * * * * * * * * * * * * * //
137 template<class LListBase, class T>
138 void Foam::ILList<LListBase, T>::operator=(const ILList<LListBase, T>& lst)
140     this->clear();
142     for
143     (
144         typename UILList<LListBase, T>::const_iterator iter = lst.begin();
145         iter != lst.end();
146         ++iter
147     )
148     {
149         append(iter().clone().ptr());
150     }
153 // * * * * * * * * * * * * * * * Friend Operators  * * * * * * * * * * * * * //
155 #include "ILListIO.C"
158 // ************************************************************************* //