Warning, file /include/root/TGridResult.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #ifndef ROOT_TGridResult
0013 #define ROOT_TGridResult
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026 #include "TList.h"
0027
0028 class TEntryList;
0029
0030
0031 class TGridResult : public TList {
0032
0033 public:
0034 TGridResult() : TList() { SetOwner(kTRUE); }
0035 virtual ~TGridResult() { }
0036
0037 virtual const char *GetFileName(UInt_t) const
0038 { MayNotUse("GetFileName"); return nullptr; }
0039 virtual const char *GetFileNamePath(UInt_t) const
0040 { MayNotUse("GetFileNamePath"); return nullptr; }
0041 virtual const char *GetPath(UInt_t) const
0042 { MayNotUse("GetPath"); return nullptr; }
0043 virtual const TEntryList *GetEntryList(UInt_t) const
0044 { MayNotUse("GetEntryList"); return nullptr; }
0045 virtual const char *GetKey(UInt_t, const char*) const
0046 { MayNotUse("GetKey"); return nullptr; }
0047 virtual Bool_t SetKey(UInt_t, const char*, const char*)
0048 { MayNotUse("SetKey"); return kFALSE; }
0049 virtual TList *GetFileInfoList() const
0050 { MayNotUse("GetFileInfoList"); return nullptr; }
0051
0052 ClassDefOverride(TGridResult,1)
0053 };
0054
0055 #endif