Forward compatibility: flex
[foam-extend-3.2.git] / src / mesh / cfMesh / utilities / containers / DynList / DynList.C
blob8fe842580c01a3541d0b3c95808d06453209ebd2
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | cfMesh: A library for mesh generation
4    \\    /   O peration     |
5     \\  /    A nd           | Author: Franjo Juretic (franjo.juretic@c-fields.com)
6      \\/     M anipulation  | Copyright (C) Creative Fields, Ltd.
7 -------------------------------------------------------------------------------
8 License
9     This file is part of cfMesh.
11     cfMesh 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 3 of the License, or (at your
14     option) any later version.
16     cfMesh 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 cfMesh.  If not, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 #include "DynList.H"
28 // * * * * * * * * * * * * * * * IOstream Operators  * * * * * * * * * * * * //
30 // Construct from Istream
31 template<class T, Foam::label staticSize>
32 Foam::DynList<T, staticSize>::DynList(Istream& is)
34     UList<T>(),
35     nextFree_(0)
37     FatalErrorIn
38     (
39         "template<class T, Foam::label staticSize>"
40         "\nFoam::DynList<T, staticSize>::DynList(Istream& is)"
41     ) << "Not implemented" << exit(FatalError);
43     List<T> helper(is);
45     nextFree_ = helper.size();
46     UList<T>::swap(helper);
50 template<class T, Foam::label staticSize>
51 Foam::Ostream& Foam::operator<<
53     Foam::Ostream& os,
54     const Foam::DynList<T, staticSize>& DL
57     UList<T> helper(const_cast<T*>(DL.begin()), DL.nextFree_);
58     os << helper;
60     return os;
64 template<class T, Foam::label staticSize>
65 Foam::Istream& Foam::operator>>
67     Foam::Istream& is,
68     Foam::DynList<T, staticSize>& DL
71     FatalErrorIn
72     (
73         "template<class T, Foam::label staticSize>"
74         "\nFoam::Istream& Foam::operator>>"
75         "(Foam::Istream& is, Foam::DynList<T, staticSize>& DL)"
76     ) << "Not implemented" << exit(FatalError);
78     is >> static_cast<List<T>&>(DL);
79     DL.nextFree_ = DL.List<T>::size();
81     return is;
85 // ************************************************************************* //