|
| DeclareInterfaceID (IInspector, 1, 0) |
| InterfaceID.
|
|
template<class T, class O> |
StatusCode | inspectByRef (const T *pObj, const O *pOwner, const std::string &comment, long flag=Mutable) |
| Inspect single item by its reference (mutable and const)
|
|
template<class T, class O> |
StatusCode | inspectByValue (const T &obj, const O *pOwner, const std::string &comment) |
| Inspect single item by its value (const)
|
|
template<class T, class O> |
StatusCode | inspectContByRef (const T *pObj, const O *pOwner, const std::string &comment, long flag=Mutable) |
| Inspect container of object items by its reference (mutable and const)
|
|
template<class T, class O> |
StatusCode | inspectContByValue (const T &obj, const O *pOwner, const std::string &comment) |
| Inspect container of object items by its value (const)
|
|
template<Gaudi::IsInterface TARGET> |
TARGET * | cast () |
|
template<Gaudi::IsInterface TARGET> |
TARGET const * | cast () const |
|
template<typename TARGET>
requires ( !Gaudi::IsInterface<TARGET> ) |
TARGET * | cast () |
|
template<typename TARGET>
requires ( !Gaudi::IsInterface<TARGET> ) |
TARGET const * | cast () const |
|
virtual std::vector< std::string > | getInterfaceNames () const =0 |
| Returns a vector of strings containing the names of all the implemented interfaces.
|
|
virtual unsigned long | addRef () const =0 |
| Increment the reference count of Interface instance.
|
|
virtual unsigned long | release () const =0 |
| Release Interface instance.
|
|
virtual unsigned long | refCount () const =0 |
| Current reference count.
|
|
virtual StatusCode | queryInterface (const InterfaceID &ti, void **pp)=0 |
| Set the void** to the pointer to the requested interface of the instance.
|
|
virtual | ~IInterface ()=default |
| Virtual destructor.
|
|
virtual void const * | i_cast (const InterfaceID &) const =0 |
|
void * | i_cast (const InterfaceID &iid) |
|
|
virtual StatusCode | inspectByRef (const void *pObj, const Tag &typ, void *pOwner, const Tag &otag, const std::string &comment, long flag)=0 |
| Inspect object by Reference.
|
|
virtual StatusCode | inspectByValue (IValue *pObj, const Tag &typ, void *pOwner, const Tag &oTag, const std::string &comment)=0 |
| Inspect object by Value.
|
|
virtual StatusCode | inspectContByRef (const void *pObj, const Tag &tag, const Tag &rtag, const Tag &vtag, const void *pOwner, const Tag &otag, const std::string &comment, long flags)=0 |
| Inspect container of objects by reference.
|
|
virtual StatusCode | inspectContByValue (IValue *pObj, const Tag &tag, const Tag &rtag, const Tag &vtag, const void *pOwner, const Tag &otag, const std::string &comment)=0 |
| Inspect container of objects by value.
|
|
virtual unsigned long | decRef () const =0 |
| Decrement reference count and return the new reference count.
|
|
Inspector base class.
Definition at line 21 of file IInspector.h.