ATLAS Offline Software
AddressProviderSvc.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
12 #ifndef ATHENAKERNEL_ADDRESSPROVIDERSVC_H
13 #define ATHENAKERNEL_ADDRESSPROVIDERSVC_H
14 
15 //<<<<<< INCLUDES >>>>>>
16 #include <string>
18 #include "GaudiKernel/Service.h"
19 #include "GaudiKernel/ISvcLocator.h"
20 
21 class AddressProviderSvc : public Service, virtual public IAddressProvider {
23  AddressProviderSvc( const std::string& name, ISvcLocator* svcloc) :
24  Service(name, svcloc) {};
25 
26  void dummy();
27 };
28 
29 #endif // ATHENAKERNEL_ADRESSPROVIDERSVC_H
30 
31 
32 
python.FakeAthena.Service
def Service(name)
Definition: FakeAthena.py:38
AddressProviderSvc
@ class AddressProviderSvc
Definition: AddressProviderSvc.h:21
IAddressProvider
interface for IOA providers
Definition: IAddressProvider.h:28
AddressProviderSvc::dummy
void dummy()
Definition: AddressProviderSvc.cxx:8
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
IAddressProvider.h
AddressProviderSvc::AddressProviderSvc
AddressProviderSvc(const std::string &name, ISvcLocator *svcloc)
Standard Constructor
Definition: AddressProviderSvc.h:23