The Gaudi Framework  master (82fdf313)
Loading...
Searching...
No Matches
IComponentManager.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
14
15class GAUDI_API IComponentManager : virtual public IStateful {
16public:
19
21 virtual const InterfaceID& componentBaseInterface() const = 0;
22
24 virtual void outputLevelUpdate() = 0;
25};
#define GAUDI_API
Definition Kernel.h:49
virtual void outputLevelUpdate()=0
Function to call to update the outputLevel of the components (after a change in MessageSvc).
DeclareInterfaceID(IComponentManager, 1, 0)
InterfaceID.
virtual const InterfaceID & componentBaseInterface() const =0
Basic interface id of the managed components.
Interface for classes that implement the Gaudi State Machine.
Definition IStateful.h:24
Interface ID class.
Definition IInterface.h:38