00001 #ifndef TResultSetHandle_hxx_seen 00002 #define TResultSetHandle_hxx_seen 00003 00004 #include "TDbiResultSetHandle.hxx" 00005 00006 00007 class TSK_DBI_Context; 00008 00009 /// This is the base class for all results sets of rows of type T 00010 00011 template <class T> class TResultSetHandle : public TDbiResultSetHandle<T> { 00012 00013 public: 00014 00015 TResultSetHandle(); 00016 TResultSetHandle(const TResultSetHandle& from); 00017 TResultSetHandle(const TSK_DBI_Context& context, 00018 Int_t task = 0); 00019 virtual ~TResultSetHandle(); 00020 00021 private: 00022 00023 ClassDef(TResultSetHandle,1); 00024 00025 }; 00026 00027 00028 00029 00030 #endif