Reverted changes to avoid warnings from the Icc-11 compiler and added a compiler...
[OpenFOAM-1.6.x.git] / src / OpenFOAM / containers / Lists / SubList / SubListI.H
blob60a378b053e4a386a708de7b4abebab3f0285d25
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 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
29 template<class T>
30 inline Foam::SubList<T>::SubList
32     const UList<T>& list,
33     const label subSize
36     UList<T>(list.v_, subSize)
38 #   ifdef FULLDEBUG
39     list.checkSize(subSize);
40 #   endif
44 template<class T>
45 inline Foam::SubList<T>::SubList
47     const UList<T>& list,
48     const label subSize,
49     const label startIndex
52     UList<T>(&(list.v_[startIndex]), subSize)
54 #   ifdef FULLDEBUG
56     // Artificially allow the start of a zero-sized subList to be
57     // one past the end of the original list.
58     if (subSize)
59     {
60         list.checkStart(startIndex);
61         list.checkSize(startIndex + subSize);
62     }
63     else
64     {
65         // Start index needs to fall between 0 and size.  One position
66         // behind the last element is allowed
67         list.checkSize(startIndex);
68     }
69 #   endif
73 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
75 template<class T>
76 inline const Foam::SubList<T>& Foam::SubList<T>::null()
78     return *reinterpret_cast< SubList<T>* >(0);
82 // * * * * * * * * * * * * * * * Member Operators  * * * * * * * * * * * * * //
84 template<class T>
85 inline Foam::SubList<T>::operator const Foam::List<T>&() const
87     return *reinterpret_cast< const List<T>* >(this);
91 template<class T>
92 inline void Foam::SubList<T>::operator=(const T& t)
94     UList<T>::operator=(t);
98 // ************************************************************************* //