The Gaudi Framework  v29r0 (ff2e7097)
IUpdateManagerSvc::PtrSetter< ActualType > Class Template Referencefinal

Templated specialization of BasePtrSetter. More...

Inheritance diagram for IUpdateManagerSvc::PtrSetter< ActualType >:
Collaboration diagram for IUpdateManagerSvc::PtrSetter< ActualType >:

Public Types

using dest_type = ActualType
 

Public Member Functions

 PtrSetter (dest_type *&dest)
 
void set (DataObject *obj) override
 sets the internal pointer to the provided data object (with a dynamic_cast). More...
 
bool isNull () override
 tells if the internal pointer is nullptr. More...
 
- Public Member Functions inherited from BasePtrSetter
virtual ~BasePtrSetter ()=default
 Empty virtual destructor. More...
 

Private Attributes

dest_type ** m_storage
 pointer to the pointer to fill provided by the user. More...
 

Detailed Description

template<class ActualType>
class IUpdateManagerSvc::PtrSetter< ActualType >

Templated specialization of BasePtrSetter.

Definition at line 152 of file IUpdateManagerSvc.h.

Member Typedef Documentation

template<class ActualType >
using IUpdateManagerSvc::PtrSetter< ActualType >::dest_type = ActualType

Definition at line 155 of file IUpdateManagerSvc.h.

Constructor & Destructor Documentation

template<class ActualType >
IUpdateManagerSvc::PtrSetter< ActualType >::PtrSetter ( dest_type *&  dest)
inline

Definition at line 156 of file IUpdateManagerSvc.h.

156 : m_storage( &dest ) { *m_storage = nullptr; }
dest_type ** m_storage
pointer to the pointer to fill provided by the user.

Member Function Documentation

template<class ActualType >
bool IUpdateManagerSvc::PtrSetter< ActualType >::isNull ( )
inlineoverridevirtual

tells if the internal pointer is nullptr.

Implements BasePtrSetter.

Definition at line 158 of file IUpdateManagerSvc.h.

158 { return *m_storage == nullptr; }
dest_type ** m_storage
pointer to the pointer to fill provided by the user.
template<class ActualType >
void IUpdateManagerSvc::PtrSetter< ActualType >::set ( DataObject )
inlineoverridevirtual

sets the internal pointer to the provided data object (with a dynamic_cast).

Implements BasePtrSetter.

Definition at line 157 of file IUpdateManagerSvc.h.

157 { *m_storage = dynamic_cast<dest_type*>( obj ); }
dest_type ** m_storage
pointer to the pointer to fill provided by the user.

Member Data Documentation

template<class ActualType >
dest_type** IUpdateManagerSvc::PtrSetter< ActualType >::m_storage
private

pointer to the pointer to fill provided by the user.

Definition at line 162 of file IUpdateManagerSvc.h.


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