thepeg is hosted by Hepforge, IPPP Durham
ThePEG  2.2.1
ThePEG::Pointer::TransientRCPtr< T > Class Template Reference

TransientRCPtr is a simple wrapper around a bare pointer which can be assigned to and from an RCPtr and ConstRCPtr without problem. More...

#include <RCPtr.h>

Public Types

typedef void iterator_category
 Template argument typedef. More...
 
typedef void difference_type
 Template argument typedef. More...
 
typedef T * pointer
 Template argument typedef. More...
 
typedef const T * const_pointer
 Template argument typedef. More...
 
typedef T & reference
 Template argument typedef. More...
 
typedef const T & const_reference
 Template argument typedef. More...
 
typedef T value_type
 Template argument typedef. More...
 

Public Member Functions

 TransientRCPtr ()
 Constructor for null pointer.
 
 TransientRCPtr (decltype(nullptr))
 Constructor for nullptr.
 
 TransientRCPtr (const TransientRCPtr &p)
 Copy constructor.
 
template<typename UPtr >
 TransientRCPtr (const UPtr &u)
 Copyconstructor for class UPtr which has operator-> defined resulting in a value implicitly convertible to T *.
 
 TransientRCPtr (pointer p)
 Construction from real pointer.
 
 ~TransientRCPtr ()
 Destructor. More...
 
TransientRCPtroperator= (const TransientRCPtr &p)
 Assignment.
 
template<typename UPtr >
TransientRCPtroperator= (const UPtr &u)
 Assignment from class UPtr which has operator-> defined resulting in a value implicitly convertible to T *.
 
template<typename UPtr >
TransientRCPtrassignDynamic (const UPtr &u)
 Assignment from class UPtr which has operator-> defined resulting in a value which can be cast dynamically to T *.
 
template<typename UPtr >
TransientRCPtrassignConst (const UPtr &u)
 Assignment from class UPtr which has operator-> defined resulting in a value whcih can be const_cast'ed to T *.
 
bool operator== (const TransientRCPtr &p) const
 Test for equality of the underlying pointers.
 
bool operator!= (const TransientRCPtr &p) const
 Test for inequality of the underlying pointers.
 
bool operator== (const_pointer p) const
 Test for equality of the underlying pointers.
 
bool operator!= (const_pointer p) const
 Test for inequality of the underlying pointers.
 
template<typename UPtr >
bool operator== (const UPtr &u) const
 Test for equality of the underlying pointers.
 
template<typename UPtr >
bool operator!= (const UPtr &u) const
 Test for inequality of the underlying pointers.
 
bool operator< (const TransientRCPtr &p) const
 Test for ordering.
 
bool operator< (const_pointer p) const
 Test for ordering.
 
bool operator! () const
 Returns true if the underlying pointer is null.
 
 operator T* () const
 Returns the underlying pointer.
 
pointer operator-> () const
 Member access.
 
reference operator* () const
 Dereferencing.
 

Private Attributes

pointer ptr
 The actual pointer.
 

Detailed Description

template<typename T>
class ThePEG::Pointer::TransientRCPtr< T >

TransientRCPtr is a simple wrapper around a bare pointer which can be assigned to and from an RCPtr and ConstRCPtr without problem.

See also
RCPtr
ConstRCPtr

Definition at line 519 of file RCPtr.h.

Member Typedef Documentation

◆ const_pointer

template<typename T>
typedef const T* ThePEG::Pointer::TransientRCPtr< T >::const_pointer

Template argument typedef.

Definition at line 530 of file RCPtr.h.

◆ const_reference

template<typename T>
typedef const T& ThePEG::Pointer::TransientRCPtr< T >::const_reference

Template argument typedef.

Definition at line 534 of file RCPtr.h.

◆ difference_type

template<typename T>
typedef void ThePEG::Pointer::TransientRCPtr< T >::difference_type

Template argument typedef.

Definition at line 526 of file RCPtr.h.

◆ iterator_category

template<typename T>
typedef void ThePEG::Pointer::TransientRCPtr< T >::iterator_category

Template argument typedef.

Definition at line 524 of file RCPtr.h.

◆ pointer

template<typename T>
typedef T* ThePEG::Pointer::TransientRCPtr< T >::pointer

Template argument typedef.

Definition at line 528 of file RCPtr.h.

◆ reference

template<typename T>
typedef T& ThePEG::Pointer::TransientRCPtr< T >::reference

Template argument typedef.

Definition at line 532 of file RCPtr.h.

◆ value_type

template<typename T>
typedef T ThePEG::Pointer::TransientRCPtr< T >::value_type

Template argument typedef.

Definition at line 536 of file RCPtr.h.

Constructor & Destructor Documentation

◆ ~TransientRCPtr()

template<typename T>
ThePEG::Pointer::TransientRCPtr< T >::~TransientRCPtr ( )
inline

Destructor.

Does not delete the object pointed to.

Definition at line 570 of file RCPtr.h.


The documentation for this class was generated from the following file: