ROOT
6.08/07
Reference Guide
net
net
inc
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
//////////////////////////////////////////////////////////////////////////
16
// //
17
// TGridJobStatusList //
18
// //
19
// Abstract base class defining a list of GRID job status //
20
// //
21
//////////////////////////////////////////////////////////////////////////
22
23
#ifndef ROOT_TList
24
#include "
TList.h
"
25
#endif
26
27
#ifndef ROOT_TGridJob
28
#include "
TGridJob.h
"
29
#endif
30
31
32
class
TGridJob
;
33
34
class
TGridJobStatusList
:
public
TList
{
35
36
protected
:
37
TString
fJobID
;
// the job's ID
38
39
public
:
40
TGridJobStatusList
() : fJobID(
""
) { }
41
virtual
~TGridJobStatusList
() { }
42
43
ClassDef
(
TGridJobStatusList
,1)
// ABC defining interface to a list of GRID jobs
44
};
45
46
R__EXTERN
TGridJobStatusList
*
gGridJobStatusList
;
47
48
#endif
TString
Basic string class.
Definition:
TString.h:137
ClassDef
#define ClassDef(name, id)
Definition:
Rtypes.h:254
TList.h
TGridJobStatusList
Definition:
TGridJobStatusList.h:34
TGridJobStatusList::~TGridJobStatusList
virtual ~TGridJobStatusList()
Definition:
TGridJobStatusList.h:41
TList
A doubly linked list.
Definition:
TList.h:47
TGridJobStatusList::fJobID
TString fJobID
Definition:
TGridJobStatusList.h:37
TGridJobStatusList::TGridJobStatusList
TGridJobStatusList()
Definition:
TGridJobStatusList.h:40
R__EXTERN
#define R__EXTERN
Definition:
DllImport.h:27
TGridJob
Definition:
TGridJob.h:35
gGridJobStatusList
R__EXTERN TGridJobStatusList * gGridJobStatusList
Definition:
TGridJobStatusList.h:46
TGridJob.h