Loading [MathJax]/extensions/tex2jax.js
ROOT
6.10/09
Reference Guide
ROOT Home Page
Main Page
Tutorials
User's Classes
+
Namespaces
Namespace List
+
Namespace Members
+
All
<
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
<
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
u
w
x
+
Enumerations
a
e
f
g
m
p
t
w
y
+
Enumerator
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
w
+
All Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
v
w
x
y
+
Enumerations
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
w
y
+
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
+
Properties
f
+
Related Functions
:
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Files
File List
+
File Members
+
All
1
2
3
4
5
6
7
8
9
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Enumerations
c
e
f
i
l
m
p
r
u
x
+
Enumerator
a
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
v
w
x
y
z
+
Macros
1
2
3
4
5
6
7
8
9
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Release Notes
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
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
#include "
Rtypes.h
"
26
27
class
TObject
;
28
29
30
class
TInspectorImp
{
31
32
public
:
33
TInspectorImp
() { }
34
TInspectorImp
(
const
TObject
*,
UInt_t
,
UInt_t
) { }
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
TInspectorImp::Hide
virtual void Hide()
Definition:
TInspectorImp.h:37
Rtypes.h
TInspectorImp::Show
virtual void Show()
Definition:
TInspectorImp.h:38
ClassDef
#define ClassDef(name, id)
Definition:
Rtypes.h:297
UInt_t
unsigned int UInt_t
Definition:
RtypesCore.h:42
TInspectorImp::TInspectorImp
TInspectorImp(const TObject *, UInt_t, UInt_t)
Definition:
TInspectorImp.h:34
TInspectorImp::TInspectorImp
TInspectorImp()
Definition:
TInspectorImp.h:33
TObject
Mother of all ROOT objects.
Definition:
TObject.h:37
TInspectorImp::~TInspectorImp
virtual ~TInspectorImp()
Definition:
TInspectorImp.h:35
TInspectorImp
ABC describing GUI independent object inspector (abstraction mainly needed for Win32.
Definition:
TInspectorImp.h:30