#ifndef ROOT_TGridResult
#define ROOT_TGridResult
#ifndef ROOT_TList
#include "TList.h"
#endif
class TEntryList;
class TGridResult : public TList {
public:
   TGridResult() : TList() { SetOwner(kTRUE); }
   virtual ~TGridResult() { }
   virtual const char *GetFileName(UInt_t) const
      { MayNotUse("GetFileName"); return 0; }
   virtual const char *GetFileNamePath(UInt_t) const
      { MayNotUse("GetFileNamePath"); return 0; }
   virtual const char *GetPath(UInt_t) const
      { MayNotUse("GetPath"); return 0; }
   virtual const TEntryList *GetEntryList(UInt_t) const
      { MayNotUse("GetEntryList"); return 0; }
   virtual const char *GetKey(UInt_t, const char*) const
      { MayNotUse("GetKey"); return 0; }
   virtual Bool_t      SetKey(UInt_t, const char*, const char*)
      { MayNotUse("SetKey"); return 0; }
   virtual TList      *GetFileInfoList() const
      { MayNotUse("GetFileInfoList"); return 0; }
   ClassDef(TGridResult,1)  
};
#endif
Last change: Tue May 13 17:18:18 2008
Last generated: 2008-05-13 17:18
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.