#ifndef ROOT_TTreeResult
#define ROOT_TTreeResult
#ifndef ROOT_TSQLResult
#include "TSQLResult.h"
#endif
class TString;
class TObjArray;
class TTreeResult : public TSQLResult {
friend class TTreePlayer;
private:
   Int_t       fColumnCount;   
   TString    *fFields;        
   TObjArray  *fResult;        
   Int_t       fNextRow;       
   Bool_t  IsValid(Int_t field);
   void    AddField(Int_t field, const char *fieldname);
   void    AddRow(TSQLRow *row);
public:
   TTreeResult();
   TTreeResult(Int_t nfields);
   virtual ~TTreeResult();
   void        Close(Option_t *option="");
   Int_t       GetFieldCount();
   const char *GetFieldName(Int_t field);
   TObjArray  *GetRows() const {return fResult;}
   TSQLRow    *Next();
   ClassDef(TTreeResult,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.