tree.h
Estructura xmlRef
Una instancia XML IDREF.
Sintaxis
/**
* xmlRef:
*
* An XML IDREF instance.
*/
typedef struct _xmlRef xmlRef;
typedef xmlRef *xmlRefPtr;
struct _xmlRef {
struct _xmlRef *next; /* next Ref */
const xmlChar *value; /* The Ref name */
xmlAttrPtr attr; /* The attribute holding it */
const xmlChar *name; /* The attribute if attr is not available */
int lineno; /* The line number if attr is not available */
};
Miembros
- next
- Siguiente Ref.
- value
- El nombre de la Ref.
- attr
- El atributo que lo contiene.
- name
- El atributo si attr no está disponible.
- lineno
- El número de línea si attr no está disponible.