#ifndef ROOT_TProofResources
#define ROOT_TProofResources
#ifndef ROOT_TObject
#include "TObject.h"
#endif
class TList;
class TString;
class TProofNodeInfo;
class TProofResources : public TObject {
protected:
   Bool_t  fValid;    
public:
   TProofResources() : fValid(kFALSE) { }
   virtual ~TProofResources() { }
   virtual TProofNodeInfo *GetMaster() = 0;
   virtual TList          *GetSubmasters() = 0;
   virtual TList          *GetWorkers() = 0;
   virtual Bool_t          IsValid() const { return fValid; }
   ClassDef(TProofResources,0)  
};
#endif
Last change: Tue May 13 17:23:38 2008
Last generated: 2008-05-13 17:23
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.