ROOT
6.08/07
Reference Guide
core
base
inc
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
32
class
TInspectorImp
{
33
34
public
:
35
TInspectorImp
() { }
36
TInspectorImp
(
const
TObject
*,
UInt_t
,
UInt_t
) { }
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
TInspectorImp::Hide
virtual void Hide()
Definition:
TInspectorImp.h:39
Rtypes.h
TInspectorImp::Show
virtual void Show()
Definition:
TInspectorImp.h:40
ClassDef
#define ClassDef(name, id)
Definition:
Rtypes.h:254
UInt_t
unsigned int UInt_t
Definition:
RtypesCore.h:42
TInspectorImp::TInspectorImp
TInspectorImp(const TObject *, UInt_t, UInt_t)
Definition:
TInspectorImp.h:36
TInspectorImp::TInspectorImp
TInspectorImp()
Definition:
TInspectorImp.h:35
TObject
Mother of all ROOT objects.
Definition:
TObject.h:37
TInspectorImp::~TInspectorImp
virtual ~TInspectorImp()
Definition:
TInspectorImp.h:37
TInspectorImp
ABC describing GUI independent object inspector (abstraction mainly needed for Win32.
Definition:
TInspectorImp.h:32