ROOT  6.06/09
Reference Guide
TInspectorImp.h
Go to the documentation of this file.
1 // @(#)root/base:$Id$
2 // Author: Fons Rademakers 07/05/2000
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 #ifndef ROOT_TInspectorImp
13 #define ROOT_TInspectorImp
14 
15 
16 ////////////////////////////////////////////////////////////////////////////////
17 // //
18 // TInspectorImp //
19 // //
20 // ABC describing GUI independent object inspector (abstration mainly needed //
21 // for Win32. On X11 systems it currently uses a standard TCanvas). //
22 // //
23 ////////////////////////////////////////////////////////////////////////////////
24 
25 #ifndef ROOT_Rtypes
26 #include "Rtypes.h"
27 #endif
28 
29 class TObject;
30 
31 
33 
34 public:
37  virtual ~TInspectorImp() { }
38 
39  virtual void Hide() { }
40  virtual void Show() { }
41 
42  ClassDef(TInspectorImp,0) //GUI independent inspector abc
43 };
44 
45 #endif
virtual void Hide()
Definition: TInspectorImp.h:39
virtual void Show()
Definition: TInspectorImp.h:40
#define ClassDef(name, id)
Definition: Rtypes.h:254
unsigned int UInt_t
Definition: RtypesCore.h:42
TInspectorImp(const TObject *, UInt_t, UInt_t)
Definition: TInspectorImp.h:36
Mother of all ROOT objects.
Definition: TObject.h:58
virtual ~TInspectorImp()
Definition: TInspectorImp.h:37
ABC describing GUI independent object inspector (abstraction mainly needed for Win32.
Definition: TInspectorImp.h:32