00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #ifndef TEUCHOS_REFCOUNTPTR_SHAREDPTR_CONVERSIONS_DECL_H
00030 #define TEUCHOS_REFCOUNTPTR_SHAREDPTR_CONVERSIONS_DECL_H
00031
00032 #include "Teuchos_RefCountPtrDecl.hpp"
00033 #include "boost/shared_ptr.hpp"
00034
00035 namespace Teuchos {
00036
00041
00044 template<class T>
00045 class DeallocBoostSharedPtr
00046 {
00047 public:
00049 DeallocBoostSharedPtr( const boost::shared_ptr<T> &sptr ) : sptr_(sptr) {}
00051 typedef T ptr_t;
00053 void free( T* ptr ) const { sptr_.reset(); }
00055 const boost::shared_ptr<T>& ptr() const { return sptr_; }
00056 private:
00057 mutable boost::shared_ptr<T> sptr_;
00058 DeallocBoostSharedPtr();
00059 };
00060
00064 template<class T>
00065 class RefCountPtrDeleter
00066 {
00067 public:
00069 RefCountPtrDeleter( const RefCountPtr<T> &rcp ) : rcp_(rcp) {}
00071 typedef void result_type;
00073 typedef T * argument_type;
00075 void operator()(T * x) const { rcp_ = null; }
00077 const RefCountPtr<T>& ptr() const { return rcp_; }
00078 private:
00079 mutable RefCountPtr<T> rcp_;
00080 RefCountPtrDeleter();
00081 };
00082
00089 template<class T>
00090 RefCountPtr<T> rcp( const boost::shared_ptr<T> &sptr );
00091
00099 template<class T>
00100 boost::shared_ptr<T> shared_pointer( const RefCountPtr<T> &rcp );
00101
00103
00104 }
00105
00106 #endif // TEUCHOS_REFCOUNTPTR_SHAREDPTR_CONVERSIONS_DECL_H