| |||
Home > Examining the Target Execution Environment > Viewing C++ classes > Identifying the components of a class in the Classes view |
Colored icons are used to identify different components within a class (see Figure 13.15):
The
magenta filled stack with an arrow indicates a function that is
a declared member of the parent class.
The
magenta filled stack indicates a member function of the parent class
that is both declared and defined. These members are real in that
they are called during execution.
You can perform various operations on these functions.
A
hollow magenta stack indicates a member function of the parent class
that is declared but not defined. These members are virtual in that
they are not called during execution.
The
blue filled block indicates a data object that is manipulated by
a class function using operators, or methods, defined in the class.