Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TGridJobStatusList.h
Go to the documentation of this file.
1// @(#)root/net:$Id$
2// Author: Andreas-Joachim Peters 10/12/2006
3
4/*************************************************************************
5 * Copyright (C) 1995-2006, Rene Brun and Fons Rademakers. *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11
12#ifndef ROOT_TGridJobStatusList
13#define ROOT_TGridJobStatusList
14
15#include "TList.h"
16
17#include "TGridJob.h"
18
19
20class TGridJob;
21
22//////////////////////////////////////////////////////////////////////////
23///
24/// \note This class is deprecated. It is kept for backward compatibility
25/// but it should not be used in new code.
26///
27/// Abstract base class defining a list of GRID job status
28///
29//////////////////////////////////////////////////////////////////////////
30class TGridJobStatusList : public TList {
31
32protected:
33 TString fJobID; // the job's ID
34
35public:
37 virtual ~TGridJobStatusList() { }
38
39 ClassDefOverride(TGridJobStatusList,1) // ABC defining interface to a list of GRID jobs
40};
41
43
44#endif
#define R__EXTERN
Definition DllImport.h:26
#define ClassDefOverride(name, id)
Definition Rtypes.h:348
R__EXTERN TGridJobStatusList * gGridJobStatusList
Abstract base class defining interface to a GRID job.
Definition TGridJob.h:31
A doubly linked list.
Definition TList.h:38
Basic string class.
Definition TString.h:138