00001 // Author: Roel Aaij 21/07/2007 00002 00003 /************************************************************************* 00004 * Copyright (C) 1995-2007, Rene Brun and Fons Rademakers. * 00005 * All rights reserved. * 00006 * * 00007 * For the licensing terms see $ROOTSYS/LICENSE. * 00008 * For the list of contributors see $ROOTSYS/README/CREDITS. * 00009 *************************************************************************/ 00010 00011 #ifndef ROOT_TGSimpleTable 00012 #define ROOT_TGSimpleTable 00013 00014 #ifndef ROOT_TGTable 00015 #include "TGTable.h" 00016 #endif 00017 00018 class TObjArray; 00019 00020 class TGSimpleTable : public TGTable { 00021 00022 private: 00023 00024 protected: 00025 00026 public: 00027 TGSimpleTable(TGWindow *p, Int_t id, Double_t **data, 00028 UInt_t nrows, UInt_t ncolumns); 00029 virtual ~TGSimpleTable(); 00030 00031 ClassDef(TGSimpleTable, 0) // A simple table that owns it's interface. 00032 }; 00033 00034 #endif