Logo ROOT  
Reference Guide
Loading...
Searching...
No Matches
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 TGSimpleTable : public TGTable {
17
18public:
19 TGSimpleTable(TGWindow *p, Int_t id, Double_t **data,
20 UInt_t nrows, UInt_t ncolumns);
21 ~TGSimpleTable() override;
22
23 ClassDefOverride(TGSimpleTable, 0) // A simple table that owns it's interface.
24};
25
26#endif
int Int_t
Signed integer 4 bytes (int).
Definition RtypesCore.h:59
unsigned int UInt_t
Unsigned integer 4 bytes (unsigned int).
Definition RtypesCore.h:60
double Double_t
Double 8 bytes.
Definition RtypesCore.h:73
#define ClassDefOverride(name, id)
Definition Rtypes.h:348
~TGSimpleTable() override
TGSimpleTable destructor.
TGSimpleTable(TGWindow *p, Int_t id, Double_t **data, UInt_t nrows, UInt_t ncolumns)
TGSimpleTable constructor.
TGTable(const TGWindow *p=nullptr, Int_t id=0, TVirtualTableInterface *interface=nullptr, UInt_t nrows=50, UInt_t ncolumns=20)
TGTable constuctor.
Definition TGTable.cxx:153
ROOT GUI Window base class.
Definition TGWindow.h:23