initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / OpenFOAM / memory / autoPtr / autoPtrI.H
blob218acfe91a12247fcb906d519b93c3f838b871c3
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 "error.H"
29 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
31 template<class T>
32 inline Foam::autoPtr<T>::autoPtr(T* p)
34     ptr_(p)
38 template<class T>
39 inline Foam::autoPtr<T>::autoPtr(const autoPtr<T>& ap)
41     ptr_(ap.ptr_)
43     ap.ptr_ = 0;
47 template<class T>
48 inline Foam::autoPtr<T>::~autoPtr()
50     clear();
54 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
56 template<class T>
57 inline bool Foam::autoPtr<T>::empty() const
59     return !ptr_;
63 template<class T>
64 inline bool Foam::autoPtr<T>::valid() const
66     return ptr_;
70 template<class T>
71 inline T* Foam::autoPtr<T>::ptr()
73     T* ptr = ptr_;
74     ptr_ = 0;
75     return ptr;
79 template<class T>
80 inline void Foam::autoPtr<T>::set(T* p)
82     if (ptr_)
83     {
84         FatalErrorIn("void autoPtr<T>::set(T*)")
85             << "object already allocated"
86             << abort(FatalError);
87     }
89     ptr_ = p;
93 template<class T>
94 inline void Foam::autoPtr<T>::reset(T* p)
96     if (ptr_)
97     {
98         delete ptr_;
99     }
101     ptr_ = p;
105 template<class T>
106 inline void Foam::autoPtr<T>::clear()
108     reset(0);
112 // * * * * * * * * * * * * * * * Member Operators  * * * * * * * * * * * * * //
114 template<class T>
115 inline T& Foam::autoPtr<T>::operator()()
117     if (!ptr_)
118     {
119         FatalErrorIn("T& autoPtr<T>::operator()()")
120             << "object is not allocated"
121             << abort(FatalError);
122     }
124     return *ptr_;
128 template<class T>
129 inline const T& Foam::autoPtr<T>::operator()() const
131     if (!ptr_)
132     {
133         FatalErrorIn("const T& autoPtr<T>::operator()() const")
134             << "object is not allocated"
135             << abort(FatalError);
136     }
138     return *ptr_;
143 template<class T>
144 inline T& Foam::autoPtr<T>::operator*()
146     return operator()();
150 template<class T>
151 inline const T& Foam::autoPtr<T>::operator*() const
153     return operator()();
158 template<class T>
159 inline Foam::autoPtr<T>::operator const T&() const
161     return operator()();
165 template<class T>
166 inline T* Foam::autoPtr<T>::operator->()
168     if (!ptr_)
169     {
170         FatalErrorIn("autoPtr<T>::operator->()")
171             << "object is not allocated"
172             << abort(FatalError);
173     }
175     return ptr_;
179 template<class T>
180 inline const T* Foam::autoPtr<T>::operator->() const
182     return const_cast<autoPtr<T>&>(*this).operator->();
186 template<class T>
187 inline void Foam::autoPtr<T>::operator=(const autoPtr<T>& ap)
189     if (this != &ap)
190     {
191         reset(const_cast<autoPtr<T>&>(ap).ptr());
192     }
196 // ************************************************************************* //