Logo ROOT   6.12/07
Reference Guide
TGLiteJobStatus.h
Go to the documentation of this file.
1 // @(#) root/glite:$Id$
2 // Author: Anar Manafov <A.Manafov@gsi.de> 2006-04-10
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2008, 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 /************************************************************************/
13 /*! \file TGLiteJobStatus.h
14 gLite implementation of TGridJobStatus*//*
15 
16  version number: $LastChangedRevision: 1678 $
17  created by: Anar Manafov
18  2006-04-10
19  last changed by: $LastChangedBy: manafov $ $LastChangedDate: 2008-01-21 18:22:14 +0100 (Mon, 21 Jan 2008) $
20 
21  Copyright (c) 2006-2008 GSI GridTeam. All rights reserved.
22 *************************************************************************/
23 
24 #ifndef ROOT_TGLiteJobStatus
25 #define ROOT_TGLiteJobStatus
26 
27 #include "TGridJobStatus.h"
28 
29 #include "TGridJob.h"
30 
32 {
33 public:
35  TGLiteJobStatus(TString jobID);
36  virtual ~TGLiteJobStatus() {}
37 
38 public:
39  virtual EGridJobStatus GetStatus() const;
40 
41 private:
42  std::string m_sJobID;
43 
44  ClassDef(TGLiteJobStatus, 1) // gLite implementation of TGridJobStatus
45 };
46 
47 #endif
std::string m_sJobID
virtual EGridJobStatus GetStatus() const
The GetStat() method retrieves a gLite job status and translates it to a TGridJobStatus::EGridJobStat...
Basic string class.
Definition: TString.h:125
#define ClassDef(name, id)
Definition: Rtypes.h:320
virtual ~TGLiteJobStatus()