Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-09-27 09:27:38

0001 // @(#)root/net:$Id$
0002 // Author: Andreas-Joachim Peters  10/12/2006
0003 
0004 /*************************************************************************
0005  * Copyright (C) 1995-2006, Rene Brun and Fons Rademakers.               *
0006  * All rights reserved.                                                  *
0007  *                                                                       *
0008  * For the licensing terms see $ROOTSYS/LICENSE.                         *
0009  * For the list of contributors see $ROOTSYS/README/CREDITS.             *
0010  *************************************************************************/
0011 
0012 #ifndef ROOT_TGridJobStatusList
0013 #define ROOT_TGridJobStatusList
0014 
0015 //////////////////////////////////////////////////////////////////////////
0016 //                                                                      //
0017 // TGridJobStatusList                                                   //
0018 //                                                                      //
0019 // Abstract base class defining a list of GRID job status               //
0020 //                                                                      //
0021 //////////////////////////////////////////////////////////////////////////
0022 
0023 #include "TList.h"
0024 
0025 namespace ROOT::Deprecated {
0026 
0027 class TGridJobStatusList : public TList {
0028 
0029 protected:
0030    TString  fJobID;  // the job's ID
0031 
0032 public:
0033    TGridJobStatusList() : fJobID("") { }
0034    virtual ~TGridJobStatusList() { }
0035 
0036    ClassDefOverride(TGridJobStatusList,1)  // ABC defining interface to a list of GRID jobs
0037 };
0038 
0039 R__EXTERN TGridJobStatusList *gGridJobStatusList;
0040 
0041 } // namespace ROOT::Deprecated
0042 
0043 using TGridJobStatusList R__DEPRECATED(6, 42, "TGridJobStatusList is expected to be unused and thus deprecated") =
0044    ROOT::Deprecated::TGridJobStatusList;
0045 R__EXTERN ROOT::Deprecated::TGridJobStatusList *&gGridJobStatusList
0046    R__DEPRECATED(6, 42, "gGridJobStatusList is expected to be unused and thus deprecated");
0047 
0048 #endif