Logo ROOT  
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#include "TGTable.h"
15
16class TObjArray;
17
18class TGSimpleTable : public TGTable {
19
20private:
21
22protected:
23
24public:
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
double Double_t
Definition: RtypesCore.h:57
#define ClassDef(name, id)
Definition: Rtypes.h:322
TGSimpleTable(TGWindow *p, Int_t id, Double_t **data, UInt_t nrows, UInt_t ncolumns)
TGSimpleTable constuctor.
virtual ~TGSimpleTable()
TGSimpleTable destructor.
An array of TObjects.
Definition: TObjArray.h:37