tree.h

Estructura xmlEnumeration

Estructura de lista utilizada cuando existe una enumeración en las DTD.

Sintaxis

/**
 * xmlEnumeration:
 *
 * List structure used when there is an enumeration in DTDs.
 */

typedef struct _xmlEnumeration xmlEnumeration;
typedef xmlEnumeration *xmlEnumerationPtr;
struct _xmlEnumeration {
    struct _xmlEnumeration    *next;	/* next one */
    const xmlChar            *name;	/* Enumeration name */
};

Miembros

next
Siguiente
name
Nombre de enumeración.