#ifndef ROOT_TGridJob
#define ROOT_TGridJob
#ifndef ROOT_TObject
#include "TObject.h"
#endif
#ifndef ROOT_TString
#include "TString.h"
#endif
class TGridJobStatus;
class TGridJob : public TObject {
protected:
   TString  fJobID;  
public:
   TGridJob(TString jobID) : fJobID(jobID) { }
   virtual ~TGridJob() { }
   virtual TString GetJobID() { return fJobID; }
   virtual TGridJobStatus *GetJobStatus() const = 0;
   virtual Int_t           GetOutputSandbox(const char *localpath, Option_t *opt = 0);
   ClassDef(TGridJob,1)  
};
#endif
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.