![]() |
The Gaudi Framework
v25r3
|
IAddressCreator interface definition. More...
#include <GaudiKernel/IAddressCreator.h>


Public Member Functions | |
| DeclareInterfaceID (IAddressCreator, 3, 0) | |
| InterfaceID. More... | |
| virtual StatusCode | createAddress (long svc_type, const CLID &clid, const std::string *par, const unsigned long *ipar, IOpaqueAddress *&refpAddress)=0 |
| Create a Generic address using explicit arguments to identify a single object. More... | |
| virtual StatusCode | convertAddress (const IOpaqueAddress *pAddress, std::string &refAddress)=0 |
| Convert an address to string form. More... | |
| virtual StatusCode | createAddress (long svc_type, const CLID &clid, const std::string &refAddress, IOpaqueAddress *&refpAddress)=0 |
| Creates an address in string form to object form. More... | |
Public Member Functions inherited from IInterface | |
| virtual void * | i_cast (const InterfaceID &) const =0 |
| main cast function More... | |
| virtual std::vector< std::string > | getInterfaceNames () const =0 |
| Returns a vector of strings containing the names of all the implemented interfaces. More... | |
| virtual unsigned long | addRef ()=0 |
| Increment the reference count of Interface instance. More... | |
| virtual unsigned long | release ()=0 |
| Release Interface instance. More... | |
| virtual unsigned long | refCount () const =0 |
| Current reference count. More... | |
| virtual StatusCode | queryInterface (const InterfaceID &ti, void **pp)=0 |
| Set the void** to the pointer to the requested interface of the instance. More... | |
| virtual | ~IInterface () |
| Virtual destructor. More... | |
Additional Inherited Members | |
Public Types inherited from IInterface | |
| enum | Status { SUCCESS = 1, NO_INTERFACE, VERSMISMATCH, LAST_ERROR } |
| Return status. More... | |
| typedef Gaudi::InterfaceId < IInterface, 0, 0 > | iid |
| Interface ID. More... | |
| typedef mpl::set1< iid > | ext_iids |
| Extra interfaces. More... | |
Static Public Member Functions inherited from IInterface | |
| static const InterfaceID & | interfaceID () |
| Return an instance of InterfaceID identifying the interface. More... | |
IAddressCreator interface definition.
The address creator allows to:
Definition at line 29 of file IAddressCreator.h.
|
pure virtual |
Convert an address to string form.
| pAddress | Input address. |
| refAddress | Output address in string form. |
Implemented in PersistencySvc, and ConversionSvc.
|
pure virtual |
Create a Generic address using explicit arguments to identify a single object.
| svc_type | Technology identifier encapsulated in this address. |
| clid | Class identifier of the DataObject represented by the opaque address |
| par | Array of strings needed to construct the opaque address. |
| ipar | Array of integers needed to construct the opaque address. |
| refpAddress | Reference to pointer to the address where the created Address should be stored. |
Implemented in Gaudi::RootCnvSvc, PersistencySvc, and ConversionSvc.
|
pure virtual |
Creates an address in string form to object form.
| svc_type | Technology identifier encapsulated in this address. |
| clid | Class identifier of the DataObject represented by the opaque address |
| address | Input address. |
| refpAddress | Output address in string form. |
Implemented in Gaudi::RootCnvSvc, PersistencySvc, and ConversionSvc.
| IAddressCreator::DeclareInterfaceID | ( | IAddressCreator | , |
| 3 | , | ||
| 0 | |||
| ) |