#ifndef ROOT_TTreeRow
#define ROOT_TTreeRow
#ifndef ROOT_TSQLRow
#include "TSQLRow.h"
#endif
class TTreeRow : public TSQLRow {
friend class TTreeResult;
friend class TTreePlayer;
private:
   Int_t        fColumnCount;  
   Int_t       *fFields;       
   char        *fRow;          
   TTreeRow    *fOriginal;     
   TTreeRow(TSQLRow *original);
   Bool_t  IsValid(Int_t field);
public:
   TTreeRow();
   TTreeRow(Int_t nfields);
   TTreeRow(Int_t nfields, const Int_t *fields, const char *row);
   virtual ~TTreeRow();
   void        Close(Option_t *option="");
   ULong_t     GetFieldLength(Int_t field);
   const char *GetField(Int_t field);
   void        SetRow(const Int_t *fields, const char *row);
   
   ClassDef(TTreeRow,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.