IAddressCreator.h
Go to the documentation of this file.
1 #ifndef GAUDIKERNEL_IADDRESSCREATOR_H
2 #define GAUDIKERNEL_IADDRESSCREATOR_H
3 
4 // Framework include files
6 #include "GaudiKernel/ClassID.h"
7 
8 // C++ include files
9 #include <string>
10 
11 // Forward declarations
12 class IOpaqueAddress;
13 
28 class GAUDI_API IAddressCreator: virtual public IInterface {
29 public:
32 
47  virtual StatusCode createAddress( long svc_type,
48  const CLID& clid,
49  const std::string* par,
50  const unsigned long* ipar,
51  IOpaqueAddress*& refpAddress) = 0;
52 
58  virtual StatusCode convertAddress( const IOpaqueAddress* pAddress,
59  std::string& refAddress) = 0;
60 
70  virtual StatusCode createAddress( long svc_type,
71  const CLID& clid,
72  const std::string& refAddress,
73  IOpaqueAddress*& refpAddress) = 0;
74 };
75 
76 #endif // GAUDIKERNEL_IADDRESSCREATOR_H
IAddressCreator interface definition.
#define DeclareInterfaceID(iface, major, minor)
Macro to declare the interface ID when using the new mechanism of extending and implementing interfac...
Definition: IInterface.h:14
STL class.
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:26
Definition of the basic interface.
Definition: IInterface.h:234
unsigned int CLID
Class ID definition.
Definition: ClassID.h:8
Opaque address interface definition.
#define GAUDI_API
Definition: Kernel.h:107