// @(#)root/table:$Id$
// Author: Valery Fine(fine@bnl.gov)   13/03/2000

/*************************************************************************
 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers.               *
 * All rights reserved.                                                  *
 *                                                                       *
 * For the licensing terms see $ROOTSYS/LICENSE.                         *
 * For the list of contributors see $ROOTSYS/README/CREDITS.             *
 *************************************************************************/

#ifndef ROOT_TColumnView
#define ROOT_TColumnView

#include "TChair.h"

//______________________________________________________________________________
//
//  TColumnView - helper class to browse the TTable objects via ROOT TBrowser
//______________________________________________________________________________
class TColumnView : public TChair {

public:
   TColumnView(const char *colName="", TTable *table=0);
   virtual        ~TColumnView();
   virtual void    Browse(TBrowser *b);
   TH1            *Histogram(const char *selection=""); // *MENU*
   virtual Bool_t  IsFolder() const;
   ClassDef(TColumnView,0) // Helper to represent one TTable column
};

#endif
 TColumnView.h:1
 TColumnView.h:2
 TColumnView.h:3
 TColumnView.h:4
 TColumnView.h:5
 TColumnView.h:6
 TColumnView.h:7
 TColumnView.h:8
 TColumnView.h:9
 TColumnView.h:10
 TColumnView.h:11
 TColumnView.h:12
 TColumnView.h:13
 TColumnView.h:14
 TColumnView.h:15
 TColumnView.h:16
 TColumnView.h:17
 TColumnView.h:18
 TColumnView.h:19
 TColumnView.h:20
 TColumnView.h:21
 TColumnView.h:22
 TColumnView.h:23
 TColumnView.h:24
 TColumnView.h:25
 TColumnView.h:26
 TColumnView.h:27
 TColumnView.h:28
 TColumnView.h:29
 TColumnView.h:30
 TColumnView.h:31
 TColumnView.h:32