Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/root/TGridJobStatusList.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

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 #include "TGridJob.h"
0026 
0027 
0028 class TGridJob;
0029 
0030 class TGridJobStatusList : public TList {
0031 
0032 protected:
0033    TString  fJobID;  // the job's ID
0034 
0035 public:
0036    TGridJobStatusList() : fJobID("") { }
0037    virtual ~TGridJobStatusList() { }
0038 
0039    ClassDefOverride(TGridJobStatusList,1)  // ABC defining interface to a list of GRID jobs
0040 };
0041 
0042 R__EXTERN TGridJobStatusList *gGridJobStatusList;
0043 
0044 #endif