Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:12:05

0001 // Author: Roel Aaij   21/07/2007
0002 
0003 /*************************************************************************
0004  * Copyright (C) 1995-2007, Rene Brun and Fons Rademakers.               *
0005  * All rights reserved.                                                  *
0006  *                                                                       *
0007  * For the licensing terms see $ROOTSYS/LICENSE.                         *
0008  * For the list of contributors see $ROOTSYS/README/CREDITS.             *
0009  *************************************************************************/
0010 
0011 #ifndef ROOT_TGSimpleTable
0012 #define ROOT_TGSimpleTable
0013 
0014 #include "TGTable.h"
0015 
0016 class TGSimpleTable : public TGTable {
0017 
0018 public:
0019    TGSimpleTable(TGWindow *p, Int_t id, Double_t **data,
0020                  UInt_t nrows, UInt_t ncolumns);
0021    ~TGSimpleTable() override;
0022 
0023    ClassDefOverride(TGSimpleTable, 0) // A simple table that owns it's interface.
0024 };
0025 
0026 #endif