ROSE
0.11.145.237
Toggle main menu visibility
Main Page
Related Pages
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
c
d
g
h
i
l
m
n
s
t
u
v
Typedefs
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
Enumerations
a
b
c
d
e
f
i
k
l
m
o
p
s
t
v
w
x
Enumerator
a
b
c
d
e
f
h
i
l
m
n
o
p
s
t
u
v
w
y
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
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
u
v
w
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
Enumerator
a
b
c
d
e
f
g
i
l
m
n
o
p
r
s
t
u
v
w
x
y
Related Symbols
b
i
o
Files
File List
Examples
src
frontend
SageIII
sageInterface
sageRti.h
1
#ifndef ROSE_sageRti_H
2
#define ROSE_sageRti_H
3
4
#include <string>
5
#include <vector>
6
7
// MS 2002: global type
15
class
RTIMemberData
16
{
17
// DQ (12/31/2005): Note that we can't use "using namespace std;"
18
// to simplify this code, or so it seems.
19
public
:
20
// The first two of these fields are constants, and so this avoids the constructor
21
const
char
* type;
22
const
char
* name;
23
std::string value;
24
25
RTIMemberData
(): type(
nullptr
), name(
nullptr
), value() {}
26
27
RTIMemberData
(
const
char
* type0,
const
char
* name0,
const
std::string& value0)
28
: type(type0), name(name0), value(value0)
29
{}
30
};
15
class
RTIMemberData
{
…
};
31
32
typedef
std::vector<RTIMemberData> RTIReturnType;
33
34
#endif
RTIMemberData
Access to C++ Run Time Information (RTI)
Definition
sageRti.h:16
Generated on Mon Mar 10 2025 00:08:54 for ROSE by
1.9.8