Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / OpenFOAM / memory / autoPtr / autoPtrI.H
blob02f4c485ae7d0b0a5d146fac5b4e7f99a4408183
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2004-2010 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
13     the Free Software Foundation, either version 3 of the License, or
14     (at your 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, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 #include "error.H"
28 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
30 template<class T>
31 inline Foam::autoPtr<T>::autoPtr(T* p)
33     ptr_(p)
37 template<class T>
38 inline Foam::autoPtr<T>::autoPtr(const autoPtr<T>& ap)
40     ptr_(ap.ptr_)
42     ap.ptr_ = 0;
46 template<class T>
47 inline Foam::autoPtr<T>::~autoPtr()
49     clear();
53 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
55 template<class T>
56 inline bool Foam::autoPtr<T>::empty() const
58     return !ptr_;
62 template<class T>
63 inline bool Foam::autoPtr<T>::valid() const
65     return ptr_;
69 template<class T>
70 inline T* Foam::autoPtr<T>::ptr()
72     T* ptr = ptr_;
73     ptr_ = 0;
74     return ptr;
78 template<class T>
79 inline void Foam::autoPtr<T>::set(T* p)
81     if (ptr_)
82     {
83         FatalErrorIn("void Foam::autoPtr<T>::set(T*)")
84             << "object already allocated"
85             << abort(FatalError);
86     }
88     ptr_ = p;
92 template<class T>
93 inline void Foam::autoPtr<T>::reset(T* p)
95     if (ptr_)
96     {
97         delete ptr_;
98     }
100     ptr_ = p;
104 template<class T>
105 inline void Foam::autoPtr<T>::clear()
107     reset(0);
111 // * * * * * * * * * * * * * * * Member Operators  * * * * * * * * * * * * * //
113 template<class T>
114 inline T& Foam::autoPtr<T>::operator()()
116     if (!ptr_)
117     {
118         FatalErrorIn("T& Foam::autoPtr<T>::operator()()")
119             << "object is not allocated"
120             << abort(FatalError);
121     }
123     return *ptr_;
127 template<class T>
128 inline const T& Foam::autoPtr<T>::operator()() const
130     if (!ptr_)
131     {
132         FatalErrorIn("const T& Foam::autoPtr<T>::operator()() const")
133             << "object is not allocated"
134             << abort(FatalError);
135     }
137     return *ptr_;
141 template<class T>
142 inline Foam::autoPtr<T>::operator const T&() const
144     return operator()();
148 template<class T>
149 inline T* Foam::autoPtr<T>::operator->()
151     if (!ptr_)
152     {
153         FatalErrorIn("Foam::autoPtr<T>::operator->()")
154             << "object is not allocated"
155             << abort(FatalError);
156     }
158     return ptr_;
162 template<class T>
163 inline const T* Foam::autoPtr<T>::operator->() const
165     return const_cast<autoPtr<T>&>(*this).operator->();
169 template<class T>
170 inline void Foam::autoPtr<T>::operator=(const autoPtr<T>& ap)
172     if (this != &ap)
173     {
174         reset(const_cast<autoPtr<T>&>(ap).ptr());
175     }
179 // ************************************************************************* //