initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / OpenFOAM / containers / LinkedLists / accessTypes / LPtrList / LPtrList.C
blobf5ee9e46d612ae5db97c05d9b0d2342c1cd10ae5
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 "LPtrList.H"
29 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
31 template<class LListBase, class T>
32 Foam::LPtrList<LListBase, T>::LPtrList(const LPtrList<LListBase, T>& lst)
34     LList<LListBase, T*>()
36     for (const_iterator iter = lst.begin(); iter != lst.end(); ++iter)
37     {
38         append(iter().clone().ptr());
39     }
43 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
45 template<class LListBase, class T>
46 Foam::LPtrList<LListBase, T>::~LPtrList()
48     clear();
52 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
54 template<class LListBase, class T>
55 bool Foam::LPtrList<LListBase, T>::eraseHead()
57     T* tPtr;
58     if ((tPtr = this->removeHead()))
59     {
60         delete tPtr;
61         return true;
62     }
63     else
64     {
65         return false;
66     }
70 template<class LListBase, class T>
71 void Foam::LPtrList<LListBase, T>::clear()
73     label oldSize = this->size();
74     for (label i=0; i<oldSize; i++)
75     {
76         eraseHead();
77     }
79     LList<LListBase, T*>::clear();
83 template<class LListBase, class T>
84 void Foam::LPtrList<LListBase, T>::transfer(LPtrList<LListBase, T>& lst)
86     clear();
87     LList<LListBase, T*>::transfer(lst);
91 // * * * * * * * * * * * * * * * Member Operators  * * * * * * * * * * * * * //
93 template<class LListBase, class T>
94 void Foam::LPtrList<LListBase, T>::operator=(const LPtrList<LListBase, T>& lst)
96     clear();
98     for (const_iterator iter = lst.begin(); iter != lst.end(); ++iter)
99     {
100         append(iter().clone().ptr());
101     }
105 // * * * * * * * * * * * * * * * Friend Operators  * * * * * * * * * * * * * //
107 #include "LPtrListIO.C"
110 // ************************************************************************* //