BOSS
7.0.7
BESIII Offline Software System
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Functions
a
b
c
d
e
f
g
i
l
m
n
o
p
r
s
t
u
v
w
z
Variables
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
v
w
x
z
Typedefs
b
c
d
e
g
h
i
l
m
n
o
p
r
s
t
v
Enumerations
Enumerator
a
b
c
d
e
f
i
k
l
m
n
o
p
r
s
t
u
w
x
z
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
m
n
p
r
s
t
v
w
Enumerations
b
c
d
e
f
g
h
i
k
l
m
n
p
r
s
t
v
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Related Functions
:
a
b
c
d
e
f
g
i
k
l
m
n
o
p
r
s
t
w
x
Files
File List
File 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
l
m
n
o
p
q
r
s
t
u
v
w
x
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
j
k
l
m
n
p
q
r
s
t
u
v
w
z
Enumerations
Enumerator
a
b
c
d
e
f
g
h
i
k
m
n
o
p
r
s
t
u
w
Macros
_
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
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
Loading...
Searching...
No Matches
GmsListLink.h
Go to the documentation of this file.
1
// File: GmsListLink.h
2
// Author: Alan Breakstone
3
4
/* This class is derived from a similar class in "A C++ Toolkit",
5
which is Copyright 1991 by Jonathan S. Shapiro, and is used
6
with permission. "A C++ Toolkit" is published by Prentice Hall, Inc. */
7
8
// Contents ---------------------------------------------------------
9
//
10
// GmsListLink
11
//
12
// Description:
13
//
14
// C++ header file for Gismo GmsListLink class
15
//
16
// End --------------------------------------------------------------
17
18
19
// Interface Dependencies -------------------------------------------
20
21
#ifndef GMSLISTLINK_H
22
#define GMSLISTLINK_H
23
24
// End Interface Dependencies ---------------------------------------
25
26
27
// Class //
28
29
class
GmsListLink
30
{
// base class for any object that needs to be part of a doubly-linked list
31
friend
class
GmsList
;
32
protected
:
// make available to derived classes
33
GmsListLink
*
_next
;
// pointer to next item in list
34
GmsListLink
*
_prev
;
// pointer to previous item in list
35
public
:
36
GmsListLink
() {
_next
=
_prev
= 0; }
37
virtual
~GmsListLink
();
38
GmsListLink
*
next
()
const
{
return
_next
; }
39
GmsListLink
*
prev
()
const
{
return
_prev
; }
40
};
41
42
#endif
GmsListLink
Definition:
GmsListLink.h:30
GmsListLink::GmsListLink
GmsListLink()
Definition:
GmsListLink.h:36
GmsListLink::prev
GmsListLink * prev() const
Definition:
GmsListLink.h:39
GmsListLink::_prev
GmsListLink * _prev
Definition:
GmsListLink.h:34
GmsListLink::~GmsListLink
virtual ~GmsListLink()
Definition:
GmsListLink.cxx:16
GmsListLink::next
GmsListLink * next() const
Definition:
GmsListLink.h:38
GmsListLink::_next
GmsListLink * _next
Definition:
GmsListLink.h:33
GmsList
Definition:
GmsList.h:33
source
Reconstruction
MdcPatRec
MdcTrkRecon
MdcTrkRecon-00-03-48
MdcTrkRecon
GmsListLink.h
Generated by
1.9.6