The Gaudi Framework  master (ff829712)
Loading...
Searching...
No Matches
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).
 
bool isNull () override
 tells if the internal pointer is nullptr.
 
- Public Member Functions inherited from BasePtrSetter
virtual ~BasePtrSetter ()=default
 

Private Attributes

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

Detailed Description

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

Templated specialization of BasePtrSetter.

Definition at line 141 of file IUpdateManagerSvc.h.

Member Typedef Documentation

◆ dest_type

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

Definition at line 143 of file IUpdateManagerSvc.h.

Constructor & Destructor Documentation

◆ PtrSetter()

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

Definition at line 144 of file IUpdateManagerSvc.h.

144: m_storage( &dest ) { *m_storage = nullptr; }
Templated specialization of BasePtrSetter.
dest_type ** m_storage
pointer to the pointer to fill provided by the user.

Member Function Documentation

◆ isNull()

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

tells if the internal pointer is nullptr.

Implements BasePtrSetter.

Definition at line 146 of file IUpdateManagerSvc.h.

146{ return *m_storage == nullptr; }

◆ set()

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 145 of file IUpdateManagerSvc.h.

145{ *m_storage = dynamic_cast<dest_type*>( obj ); }

Member Data Documentation

◆ m_storage

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

pointer to the pointer to fill provided by the user.

Definition at line 150 of file IUpdateManagerSvc.h.


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