ROOT  6.06/09
Reference Guide
TGSimpleTable.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_TGSimpleTable
12 #define ROOT_TGSimpleTable
13 
14 #ifndef ROOT_TGTable
15 #include "TGTable.h"
16 #endif
17 
18 class TObjArray;
19 
20 class TGSimpleTable : public TGTable {
21 
22 private:
23 
24 protected:
25 
26 public:
27  TGSimpleTable(TGWindow *p, Int_t id, Double_t **data,
28  UInt_t nrows, UInt_t ncolumns);
29  virtual ~TGSimpleTable();
30 
31  ClassDef(TGSimpleTable, 0) // A simple table that owns it's interface.
32 };
33 
34 #endif
An array of TObjects.
Definition: TObjArray.h:39
virtual ~TGSimpleTable()
TGSimpleTable destructor.
int Int_t
Definition: RtypesCore.h:41
#define ClassDef(name, id)
Definition: Rtypes.h:254
unsigned int UInt_t
Definition: RtypesCore.h:42
double Double_t
Definition: RtypesCore.h:55
TGSimpleTable(TGWindow *p, Int_t id, Double_t **data, UInt_t nrows, UInt_t ncolumns)