The Gaudi Framework  v36r6 (b1ee9983)
IStagerSvc.h
Go to the documentation of this file.
1 /***********************************************************************************\
2 * (c) Copyright 1998-2019 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 #ifndef INTERFACES_ISTAGERSVC_H
12 #define INTERFACES_ISTAGERSVC_H
13 
14 // Include Files
15 #include "GaudiKernel/IInterface.h"
16 
17 // Forward declarations
18 class IIncidentListener;
19 class Incident;
20 
21 class GAUDI_API IStagerSvc : virtual public IInterface {
22 public:
25 
27  virtual StatusCode getStreams() = 0;
28  virtual StatusCode readAhead() = 0;
29  virtual StatusCode initStage() = 0;
30 };
31 
32 #endif // GAUDIKERNEL_STAGERSVC_H
IStagerSvc::initStage
virtual StatusCode initStage()=0
IIncidentListener
Definition: IIncidentListener.h:25
StatusCode
Definition: StatusCode.h:65
IInterface.h
IInterface
Definition: IInterface.h:237
IStagerSvc::DeclareInterfaceID
DeclareInterfaceID(IStagerSvc, 2, 0)
InterfaceID.
IStagerSvc::getStreams
virtual StatusCode getStreams()=0
Retrieve interface ID.
Incident
Definition: Incident.h:27
IStagerSvc::readAhead
virtual StatusCode readAhead()=0
GAUDI_API
#define GAUDI_API
Definition: Kernel.h:81
IStagerSvc
Definition: IStagerSvc.h:21