The Gaudi Framework  master (b9786168)
Loading...
Searching...
No Matches
IOpaqueAddress.h
Go to the documentation of this file.
1/***********************************************************************************\
2* (c) Copyright 1998-2025 CERN for the benefit of the LHCb and ATLAS collaborations *
3* *
4* This software is distributed under the terms of the Apache version 2 licence, *
5* copied verbatim in the file "LICENSE". *
6* *
7* In applying this licence, CERN does not waive the privileges and immunities *
8* granted to it by virtue of its status as an Intergovernmental Organization *
9* or submit itself to any jurisdiction. *
10\***********************************************************************************/
11#pragma once
12
13#include <GaudiKernel/ClassID.h>
14#include <GaudiKernel/Kernel.h>
15#include <string>
16
17class IRegistry;
18
29public:
30 virtual ~IOpaqueAddress() = default;
31
33 virtual unsigned long addRef() = 0;
35 virtual unsigned long release() = 0;
37 virtual const CLID& clID() const = 0;
39 virtual long svcType() const = 0;
41 virtual IRegistry* registry() const = 0;
43 virtual void setRegistry( IRegistry* r ) = 0;
45 virtual const std::string* par() const = 0;
47 virtual const unsigned long* ipar() const = 0;
48};
unsigned int CLID
Class ID definition.
Definition ClassID.h:16
#define GAUDI_API
Definition Kernel.h:49
Opaque address interface definition.
virtual ~IOpaqueAddress()=default
virtual unsigned long release()=0
release reference to object
virtual long svcType() const =0
Retrieve service type.
virtual void setRegistry(IRegistry *r)=0
Update directory pointer.
virtual unsigned long addRef()=0
Add reference to object.
virtual const unsigned long * ipar() const =0
Access to generic link parameters.
virtual const CLID & clID() const =0
Retrieve class information from link.
virtual const std::string * par() const =0
Retrieve String parameters.
virtual IRegistry * registry() const =0
Update branch name.
The IRegistry represents the entry door to the environment any data object residing in a transient da...
Definition IRegistry.h:29