00001 /** @file rutz/scopedptr.h smart pointer class for unshared objects 00002 (like std::auto_ptr but without transfer-of-ownership 00003 semantics) */ 00004 00005 /////////////////////////////////////////////////////////////////////// 00006 // 00007 // Copyright (c) 2004-2007 University of Southern California 00008 // Rob Peters <rjpeters at usc dot edu> 00009 // 00010 // created: Fri Oct 15 14:51:04 2004 00011 // commit: $Id: scopedptr.h 8249 2007-04-12 06:03:40Z rjpeters $ 00012 // $HeadURL: svn://isvn.usc.edu/software/invt/trunk/saliency/src/rutz/scopedptr.h $ 00013 // 00014 // -------------------------------------------------------------------- 00015 // 00016 // This file is part of GroovX. 00017 // [http://ilab.usc.edu/rjpeters/groovx/] 00018 // 00019 // GroovX is free software; you can redistribute it and/or modify it 00020 // under the terms of the GNU General Public License as published by 00021 // the Free Software Foundation; either version 2 of the License, or 00022 // (at your option) any later version. 00023 // 00024 // GroovX is distributed in the hope that it will be useful, but 00025 // WITHOUT ANY WARRANTY; without even the implied warranty of 00026 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00027 // General Public License for more details. 00028 // 00029 // You should have received a copy of the GNU General Public License 00030 // along with GroovX; if not, write to the Free Software Foundation, 00031 // Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. 00032 // 00033 /////////////////////////////////////////////////////////////////////// 00034 00035 #ifndef GROOVX_RUTZ_SCOPEDPTR_H_UTC20050626084020_DEFINED 00036 #define GROOVX_RUTZ_SCOPEDPTR_H_UTC20050626084020_DEFINED 00037 00038 #include "rutz/algo.h" 00039 00040 namespace rutz 00041 { 00042 // ####################################################### 00043 // ======================================================= 00044 00045 /// A smart-pointer for unshared objects. 00046 00047 /** \c scoped_ptr mimics a built-in pointer except that it guarantees 00048 deletion of the object pointed to, either on destruction of the 00049 scoped_ptr or via an explicit \c reset(). */ 00050 00051 template<class T> 00052 class scoped_ptr 00053 { 00054 public: 00055 /// Construct with pointer to given object (or null). 00056 explicit scoped_ptr( T* p=0 ) throw() : 00057 ptr(p) 00058 {} 00059 00060 /// Construct with pointer to given object of related type. 00061 template <class TT> 00062 explicit scoped_ptr( TT* p ) throw() : 00063 ptr(p) 00064 {} 00065 00066 /// Destructor. 00067 ~scoped_ptr() 00068 { delete ptr; } 00069 00070 /// Reset with pointer to different object (or null). 00071 void reset( T* p=0 ) 00072 { 00073 if ( ptr != p ) 00074 { delete ptr; ptr = p; } 00075 } 00076 00077 /// Dereference. 00078 T& operator*() const throw() 00079 { return *ptr; } 00080 00081 /// Dereference for member access. 00082 T* operator->() const throw() 00083 { return ptr; } 00084 00085 /// Get a pointer to the referred-to object. 00086 T* get() const throw() 00087 { return ptr; } 00088 00089 private: 00090 scoped_ptr(const scoped_ptr& other); 00091 scoped_ptr& operator=(const scoped_ptr& other); 00092 00093 T* ptr; 00094 }; 00095 } 00096 00097 static const char __attribute__((used)) vcid_groovx_rutz_scopedptr_h_utc20050626084020[] = "$Id: scopedptr.h 8249 2007-04-12 06:03:40Z rjpeters $ $HeadURL: svn://isvn.usc.edu/software/invt/trunk/saliency/src/rutz/scopedptr.h $"; 00098 #endif // !GROOVX_RUTZ_SCOPEDPTR_H_UTC20050626084020_DEFINED