Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
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#include "Rtypes.h"
26
27class TObject;
28
29
31
32public:
35 virtual ~TInspectorImp() { }
36
37 virtual void Hide() { }
38 virtual void Show() { }
39
40 ClassDef(TInspectorImp,0) //GUI independent inspector abc
41};
42
43#endif
#define ClassDef(name, id)
Definition Rtypes.h:337
ABC describing GUI independent object inspector (abstraction mainly needed for Win32.
TInspectorImp(const TObject *, UInt_t, UInt_t)
virtual ~TInspectorImp()
virtual void Hide()
virtual void Show()
Mother of all ROOT objects.
Definition TObject.h:41