blob: 57170ad1160328cd0e4e3afb257cd4f4d48718cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
** The compiler generates one of these structures for a class that has
** instance variables defined in its specification.
*/
typedef struct objc_ivar {
const char* ivar_name; /* Name of the instance
variable as entered in the
class definition. */
const char* ivar_type; /* Description of the Ivar's
type. Useful for
debuggers. */
int ivar_offset; /* Byte offset from the base
address of the instance
structure to the variable. */
} *Ivar_t;
|