Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:57:38

0001 /***********************************************************************************\
0002 * (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations *
0003 *                                                                                   *
0004 * This software is distributed under the terms of the Apache version 2 licence,     *
0005 * copied verbatim in the file "LICENSE".                                            *
0006 *                                                                                   *
0007 * In applying this licence, CERN does not waive the privileges and immunities       *
0008 * granted to it by virtue of its status as an Intergovernmental Organization        *
0009 * or submit itself to any jurisdiction.                                             *
0010 \***********************************************************************************/
0011 #ifndef GAUDIKERNEL_IAUDITORSVC_H
0012 #define GAUDIKERNEL_IAUDITORSVC_H
0013 
0014 #include "GaudiKernel/IAuditor.h"
0015 #include "GaudiKernel/IService.h"
0016 #include "GaudiKernel/System.h"
0017 #include <string>
0018 
0019 /** @class IAuditorSvc IAuditorSvc.h GaudiKernel/IAuditorSvc.h
0020 
0021     The interface implemented by the IAuditorSvc base class.
0022 
0023     @author Pere Mato
0024 */
0025 class GAUDI_API IAuditorSvc : virtual public extend_interfaces<IService, IAuditor> {
0026 public:
0027   /// InterfaceID
0028   DeclareInterfaceID( IAuditorSvc, 3, 0 );
0029 
0030   /// management functionality: retrieve an Auditor
0031   virtual IAuditor* getAuditor( const std::string& name ) = 0;
0032 };
0033 
0034 #endif // INTERFACES_IAUDITORSVC_H