Logo ROOT   6.08/07
Reference Guide
TVirtualTableInterface.h
Go to the documentation of this file.
1 // Author: Roel Aaij 21/07/2007
2 
3 /*************************************************************************
4  * Copyright (C) 1995-2007, Rene Brun and Fons Rademakers. *
5  * All rights reserved. *
6  * *
7  * For the licensing terms see $ROOTSYS/LICENSE. *
8  * For the list of contributors see $ROOTSYS/README/CREDITS. *
9  *************************************************************************/
10 
11 #ifndef ROOT_TVirtualTableInterface
12 #define ROOT_TVirtualTableInterface
13 
14 #ifndef ROOT_Rtypes
15 #include "Rtypes.h"
16 #endif
17 
18 
20 
21 public:
24 
25  virtual Double_t GetValue(UInt_t row, UInt_t column) = 0;
26  virtual const char *GetValueAsString(UInt_t row, UInt_t column) = 0;
27  virtual const char *GetRowHeader(UInt_t row) = 0;
28  virtual const char *GetColumnHeader(UInt_t column) = 0;
29  virtual UInt_t GetNRows() = 0;
30  virtual UInt_t GetNColumns() = 0;
31 
33 };
34 
35 #endif
virtual UInt_t GetNColumns()=0
#define ClassDef(name, id)
Definition: Rtypes.h:254
virtual const char * GetColumnHeader(UInt_t column)=0
virtual const char * GetValueAsString(UInt_t row, UInt_t column)=0
virtual Double_t GetValue(UInt_t row, UInt_t column)=0
unsigned int UInt_t
Definition: RtypesCore.h:42
virtual UInt_t GetNRows()=0
double Double_t
Definition: RtypesCore.h:55
virtual const char * GetRowHeader(UInt_t row)=0