Back to home page

EIC code displayed by LXR

 
 

    


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

0001 // @(#)root/base:$Id$
0002 // Author: Fons Rademakers   07/05/2000
0003 
0004 /*************************************************************************
0005  * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers.               *
0006  * All rights reserved.                                                  *
0007  *                                                                       *
0008  * For the licensing terms see $ROOTSYS/LICENSE.                         *
0009  * For the list of contributors see $ROOTSYS/README/CREDITS.             *
0010  *************************************************************************/
0011 
0012 #ifndef ROOT_TInspectorImp
0013 #define ROOT_TInspectorImp
0014 
0015 
0016 ////////////////////////////////////////////////////////////////////////////////
0017 //                                                                            //
0018 // TInspectorImp                                                              //
0019 //                                                                            //
0020 // ABC describing GUI independent object inspector (abstration mainly needed  //
0021 // for Win32. On X11 systems it currently uses a standard TCanvas).           //
0022 //                                                                            //
0023 ////////////////////////////////////////////////////////////////////////////////
0024 
0025 #include "Rtypes.h"
0026 
0027 class TObject;
0028 
0029 
0030 class TInspectorImp {
0031 
0032 public:
0033    TInspectorImp() { }
0034    TInspectorImp(const TObject *, UInt_t, UInt_t) { }
0035    virtual ~TInspectorImp() { }
0036 
0037    virtual void Hide() { }
0038    virtual void Show() { }
0039 
0040    ClassDef(TInspectorImp,0)  //GUI independent inspector abc
0041 };
0042 
0043 #endif