|
Gaudi Framework, version v22r2 |
| Home | Generated: Tue May 10 2011 |
Small smart pointer class with automatic reference counting for IInterface. More...
#include <GaudiKernel/SmartIF.h>

Public Member Functions | |
| SmartIF () | |
| Default constructor. | |
| SmartIF (TYPE *ptr) | |
| Standard constructor from pointer. | |
| template<class OTHER > | |
| SmartIF (OTHER *ptr) | |
| Standard constructor from any (IInterface-derived) pointer. | |
| SmartIF (const SmartIF &rhs) | |
| Copy constructor. | |
| template<class T > | |
| SmartIF (const SmartIF< T > &rhs) | |
| Constructor from another SmartIF, with a different type. | |
| ~SmartIF () | |
| Standard Destructor. | |
| bool | isValid () const |
| Allow for check if smart pointer is valid. | |
| operator TYPE * () const | |
| Automatic conversion to pointer. | |
| TYPE * | operator-> () const |
| Dereference operator. | |
| TYPE & | operator* () const |
| Dereference operator. | |
| TYPE * | get () const |
| Get interface pointer. | |
| TYPE *& | pRef () |
| Get reference to the pointer. | |
| void | reset (TYPE *ptr=0) |
| Set the internal pointer to the passed one disposing of the old one. | |
| template<class OTHER > | |
| void | reset (OTHER *ptr) |
| Set the internal pointer to the passed one disposing of the old one. | |
| SmartIF & | operator= (IInterface *ptr) |
| Assignment operator from IInterface pointer. | |
| SmartIF & | operator= (const SmartIF &rhs) |
| Assignment operator. | |
| template<class T > | |
| SmartIF & | operator= (const SmartIF< T > &rhs) |
| Assignment operator from a different SmartIF. | |
Private Attributes | |
| TYPE * | m_interface |
| Pointer to the instance. | |
Small smart pointer class with automatic reference counting for IInterface.
SmartIF simplifies the interaction with components in Gaudi by implementing an automatic reference counting and the casting (via IInterface::queryInterface).
Definition at line 19 of file SmartIF.h.
Standard constructor from pointer.
Definition at line 28 of file SmartIF.h.
: m_interface(ptr) { if (m_interface) m_interface->addRef(); }
Standard constructor from any (IInterface-derived) pointer.
Definition at line 33 of file SmartIF.h.
: m_interface(0) { if (ptr) reset(ptr); }
Copy constructor.
Definition at line 37 of file SmartIF.h.
: m_interface(rhs.get()) { if (m_interface) m_interface->addRef(); }
| TYPE* SmartIF< TYPE >::get | ( | ) | const [inline] |
| bool SmartIF< TYPE >::isValid | ( | ) | const [inline] |
Allow for check if smart pointer is valid.
Definition at line 51 of file SmartIF.h.
{ return m_interface != 0; }
| SmartIF< TYPE >::operator TYPE * | ( | ) | const [inline] |
Automatic conversion to pointer.
It is also used by the compiler for automatic conversion to boolean.
Definition at line 56 of file SmartIF.h.
{ return m_interface; }
| TYPE& SmartIF< TYPE >::operator* | ( | ) | const [inline] |
| TYPE* SmartIF< TYPE >::operator-> | ( | ) | const [inline] |
| SmartIF& SmartIF< TYPE >::operator= | ( | IInterface * | ptr ) | [inline] |
Assignment operator from IInterface pointer.
It allows things like SmartIF<T> x; x = 0;
Definition at line 104 of file SmartIF.h.
{
reset(ptr);
return *this;
}
| TYPE*& SmartIF< TYPE >::pRef | ( | ) | [inline] |
| void SmartIF< TYPE >::reset | ( | TYPE * | ptr = 0 ) |
[inline] |
Set the internal pointer to the passed one disposing of the old one.
Version for pointers of the same type of the managed ones (no call to queryInterface needed).
Definition at line 74 of file SmartIF.h.
{
if (ptr == m_interface) return;
if (m_interface) m_interface->release();
if (ptr) {
m_interface = ptr;
m_interface->addRef();
} else {
m_interface = 0;
}
}
Set the internal pointer to the passed one disposing of the old one.
Version for pointers of types inheriting from IInterface.
Definition at line 87 of file SmartIF.h.
{
if (static_cast<IInterface*>(ptr) == static_cast<IInterface*>(m_interface)) return;
if (m_interface) m_interface->release();
if (ptr) {
ptr->queryInterface(TYPE::interfaceID(), pp_cast<void>(&m_interface)).ignore();
} else {
m_interface = 0;
}
}
TYPE* SmartIF< TYPE >::m_interface [private] |