Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
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 #include "TGTable.h"
15 
16 class TObjArray;
17 
18 class TGSimpleTable : public TGTable {
19 
20 private:
21 
22 protected:
23 
24 public:
25  TGSimpleTable(TGWindow *p, Int_t id, Double_t **data,
26  UInt_t nrows, UInt_t ncolumns);
27  virtual ~TGSimpleTable();
28 
29  ClassDef(TGSimpleTable, 0) // A simple table that owns it's interface.
30 };
31 
32 #endif