GXmlxProcessingInstruction

GXmlxProcessingInstruction — Stores processor-specific information with the document in a textual format.

Types and Values

Description

To create one, use gxml_xdocument_create_processing_instruction().

For an example of a ProcessingInstruction, this one specifies a stylesheet:

stylesheet href="style.xsl" type="text/xml"

The general form is

pi_target processing instruction data

For more, see: http://www.w3.org/TR/DOM-Level-1/level-one-core.html#ID-1004215813

Functions

Types and Values

GXML_TYPE_XPROCESSING_INSTRUCTION

#define GXML_TYPE_XPROCESSING_INSTRUCTION (gxml_xprocessing_instruction_get_type ())

The type for GXmlxProcessingInstruction.


struct GXmlxProcessingInstruction

struct GXmlxProcessingInstruction {
	GXmlxNode parent_instance;
	GXmlxProcessingInstructionPrivate * priv;
};

Stores processor-specific information with the document in a textual format.

To create one, use gxml_xdocument_create_processing_instruction().

For an example of a ProcessingInstruction, this one specifies a stylesheet:

stylesheet href="style.xsl" type="text/xml"

The general form is

pi_target processing instruction data

For more, see: http://www.w3.org/TR/DOM-Level-1/level-one-core.html#ID-1004215813


struct GXmlxProcessingInstructionClass

struct GXmlxProcessingInstructionClass {
	GXmlxNodeClass parent_class;
};

The class structure for GXML_TYPE_XPROCESSING_INSTRUCTION. All the fields in this structure are private and should never be accessed directly.

Members