2 * This program is free software: you can redistribute it and/or modify
3 * it under the terms of the GNU Lesser General Public License as
4 * published by the Free Software Foundation, either version 3 of the
5 * License, or (at your option) any later version.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 * @file OwningOrAliasingPtr.ih
19 * @author Tristan Roussillon (\c tristan.roussillon@liris.cnrs.fr )
20 * Laboratoire d'InfoRmatique en Image et Systèmes d'information - LIRIS (CNRS, UMR 5205), CNRS, France
24 * Implementation of inline methods defined in OwningOrAliasingPtr.h
26 * This file is part of the DGtal library.
30 //////////////////////////////////////////////////////////////////////////////
32 //////////////////////////////////////////////////////////////////////////////
34 ///////////////////////////////////////////////////////////////////////////////
35 // IMPLEMENTATION of inline methods.
36 ///////////////////////////////////////////////////////////////////////////////
38 ///////////////////////////////////////////////////////////////////////////////
39 // ----------------------- Standard services ------------------------------
44 DGtal::OwningOrAliasingPtr<T>::OwningOrAliasingPtr(const T& aValue)
45 :myPtr( new T(aValue) ), myFlagIsOwning( true )
51 DGtal::OwningOrAliasingPtr<T>::OwningOrAliasingPtr(T* aPtr, bool aFlagIsOwning)
52 :myPtr( aPtr ), myFlagIsOwning( aFlagIsOwning )
58 DGtal::OwningOrAliasingPtr<T>::OwningOrAliasingPtr(const DGtal::OwningOrAliasingPtr<T>& other)
59 : myFlagIsOwning( other.myFlagIsOwning )
61 ASSERT( myFlagIsOwning == other.myFlagIsOwning );
63 myPtr = new Value( *other.myPtr ); //copy of the data
65 myPtr = other.myPtr; //copy of the alias
70 DGtal::OwningOrAliasingPtr<T>&
71 DGtal::OwningOrAliasingPtr<T>::operator=(const DGtal::OwningOrAliasingPtr<T>& other)
75 //free old data (if needed)
79 myFlagIsOwning = other.myFlagIsOwning;
81 myPtr = new Value( *other.myPtr ); //copy of the data
83 myPtr = other.myPtr; //copy of the alias
90 DGtal::OwningOrAliasingPtr<T>::~OwningOrAliasingPtr()
92 //free if @a myPtr owns the data
97 ///////////////////////////////////////////////////////////////////////////////
98 // Interface - public :
100 template <typename T>
102 typename DGtal::OwningOrAliasingPtr<T>::Pointer
103 DGtal::OwningOrAliasingPtr<T>::get() const
108 template <typename T>
110 typename DGtal::OwningOrAliasingPtr<T>::Pointer
111 DGtal::OwningOrAliasingPtr<T>::operator->() const
116 template <typename T>
118 typename DGtal::OwningOrAliasingPtr<T>::Reference
119 DGtal::OwningOrAliasingPtr<T>::operator*() const
121 ASSERT( myPtr != NULL );
125 template <typename T>
128 DGtal::OwningOrAliasingPtr<T>::isOwning() const
130 return myFlagIsOwning;
133 template <typename T>
136 DGtal::OwningOrAliasingPtr<T>::isValid() const
141 template <typename T>
144 DGtal::OwningOrAliasingPtr<T>::selfDisplay ( std::ostream & out ) const
146 out << "[OwningOrAliasingPtr]";
148 out << " " << myPtr << " " << (*myPtr);
150 out << " " << myPtr << " " << "NULL";
154 ///////////////////////////////////////////////////////////////////////////////
155 // Implementation of inline functions //
157 template <typename T>
160 DGtal::operator<< ( std::ostream & out,
161 const OwningOrAliasingPtr<T> & object )
163 object.selfDisplay( out );
168 ///////////////////////////////////////////////////////////////////////////////