Relinkable handle to an observable. More...
#include <ql/handle.hpp>
Public Member Functions | |
RelinkableHandle (const ext::shared_ptr< T > &p=ext::shared_ptr< T >(), bool registerAsObserver=true) | |
RelinkableHandle (T *p, bool registerAsObserver=true) | |
void | linkTo (const ext::shared_ptr< T > &, bool registerAsObserver=true) |
![]() | |
Handle (const ext::shared_ptr< T > &p=ext::shared_ptr< T >(), bool registerAsObserver=true) | |
const ext::shared_ptr< T > & | currentLink () const |
dereferencing | |
const ext::shared_ptr< T > & | operator-> () const |
const ext::shared_ptr< T > & | operator* () const |
bool | empty () const |
checks if the contained shared pointer points to anything | |
operator ext::shared_ptr< Observable > () const | |
allows registration as observable | |
template<class U > | |
bool | operator== (const Handle< U > &other) const |
equality test | |
template<class U > | |
bool | operator!= (const Handle< U > &other) const |
disequality test | |
template<class U > | |
bool | operator< (const Handle< U > &other) const |
strict weak ordering | |
Additional Inherited Members | |
![]() | |
ext::shared_ptr< Link > | link_ |
Relinkable handle to an observable.
An instance of this class can be relinked so that it points to another observable. The change will be propagated to all handles that were created as copies of such instance.