initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / applications / test / DLList / DLListTest.C
blob12913ce8666f661fdd693bc76e1775c090e7a59b
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 Application
26     
27 Description
29 \*---------------------------------------------------------------------------*/
31 #include "OSspecific.H"
33 #include "IOstreams.H"
34 #include "DLList.H"
36 using namespace Foam;
38 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
39 //  Main program:
41 int main(int argc, char *argv[])
43     DLList<scalar> myList;
45     for (int i = 0; i<10; i++)
46     {
47         myList.append(1.3*i);
48     }
50     myList.append(100.3);
52     myList.append(500.3);
54     Info<< nl << "And again using STL iterator: " << nl << endl;
56     for
57     (
58         DLList<scalar>::iterator iter = myList.begin();
59         iter != myList.end();
60         ++iter
61     )
62     {
63         Info<< "element:" << *iter << endl;
64     }
67     Info<< nl << "And again using the same STL iterator: " << nl << endl;
69     for
70     (
71         DLList<scalar>::iterator iter = myList.begin();
72         iter != myList.end();
73         ++iter
74     )
75     {
76         Info<< "Removing " << myList.remove(iter) << endl;
77     }
79     myList.append(500.3);
80     myList.append(100.3);
83     Info<< nl << "And again using STL const_iterator: " << nl << endl;
85     const DLList<scalar>& const_myList = myList;
87     for
88     (
89         DLList<scalar>::const_iterator iter = const_myList.begin();
90         iter != const_myList.end();
91         ++iter
92     )
93     {
94         Info<< "element:" << *iter << endl;
95     }
97     myList.swapUp(myList.DLListBase::first());
98     myList.swapUp(myList.DLListBase::last());
100     for
101     (
102         DLList<scalar>::const_iterator iter = const_myList.begin();
103         iter != const_myList.end();
104         ++iter
105     )
106     {
107         Info<< "element:" << *iter << endl;
108     }
110     myList.swapDown(myList.DLListBase::first());
111     myList.swapDown(myList.DLListBase::last());
113     for
114     (
115         DLList<scalar>::const_iterator iter = const_myList.begin();
116         iter != const_myList.end();
117         ++iter
118     )
119     {
120         Info<< "element:" << *iter << endl;
121     }
123     Info<< nl << "Bye." << endl;
124     return 0;
128 // ************************************************************************* //