#ifndef TBASKETSQL_H
#define TBASKETSQL_H
#include <vector>
#include "TBasket.h"
class TSQLResult;
class TSQLRow;
class TBufferSQL;
class TBasketSQL : public TBasket
{
protected:
   TSQLResult **fResultPtr;  
   TSQLRow    **fRowPtr;     
   TString *fInsertQuery;    
public:
   TBasketSQL();
   TBasketSQL(const char *name, const char *title, 
              TBranch *branch, TSQLResult **rs, 
              TString *insert_query, std::vector<Int_t> *vc, TSQLRow **row);
   ~TBasketSQL();
   void    PrepareBasket(Long64_t entry);
   virtual Int_t   ReadBasketBuffers(Long64_t pos, Int_t len, TFile *file);
   virtual Int_t   ReadBasketBytes(Long64_t pos, TFile *file);
   TSQLResult * GetResultSet() { return *fResultPtr;}
   void CreateBuffer(const char *name, TString title, std::vector<Int_t> * vc, TBranch *branch, TSQLResult ** rs);
   void Update(Int_t offset, Int_t skipped);
   ClassDef(TBasketSQL,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.