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 ------------------------------
44DGtal::OwningOrAliasingPtr<T>::OwningOrAliasingPtr(const T& aValue)
45 :myPtr( new T(aValue) ), myFlagIsOwning( true )
51DGtal::OwningOrAliasingPtr<T>::OwningOrAliasingPtr(T* aPtr, bool aFlagIsOwning)
52 :myPtr( aPtr ), myFlagIsOwning( aFlagIsOwning )
58DGtal::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
70DGtal::OwningOrAliasingPtr<T>&
71DGtal::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
90DGtal::OwningOrAliasingPtr<T>::~OwningOrAliasingPtr()
92 //free if @a myPtr owns the data
97///////////////////////////////////////////////////////////////////////////////
98// Interface - public :
102typename DGtal::OwningOrAliasingPtr<T>::Pointer
103DGtal::OwningOrAliasingPtr<T>::get() const
110typename DGtal::OwningOrAliasingPtr<T>::Pointer
111DGtal::OwningOrAliasingPtr<T>::operator->() const
118typename DGtal::OwningOrAliasingPtr<T>::Reference
119DGtal::OwningOrAliasingPtr<T>::operator*() const
121 ASSERT( myPtr != NULL );
128DGtal::OwningOrAliasingPtr<T>::isOwning() const
130 return myFlagIsOwning;
136DGtal::OwningOrAliasingPtr<T>::isValid() const
144DGtal::OwningOrAliasingPtr<T>::selfDisplay ( std::ostream & out ) const
146 out << "[OwningOrAliasingPtr]";
148 out << " " << myPtr << " " << (*myPtr);
150 out << " " << myPtr << " " << "NULL";
154///////////////////////////////////////////////////////////////////////////////
155// Implementation of inline functions //
160DGtal::operator<< ( std::ostream & out,
161 const OwningOrAliasingPtr<T> & object )
163 object.selfDisplay( out );
168///////////////////////////////////////////////////////////////////////////////