Annotation of win32/gnome/libxslt-x.x.x/libxslt/attributes.h, revision 1.2
1.1 paf 1: /*
2: * attributes.h: interface for the XSLT attribute handling
3: *
4: * See Copyright for the status of this software.
5: *
6: * daniel@veillard.com
7: */
8:
9: #ifndef __XML_XSLT_ATTRIBUTES_H__
10: #define __XML_XSLT_ATTRIBUTES_H__
11:
12: #include <libxml/tree.h>
13:
14: #ifdef __cplusplus
15: extern "C" {
16: #endif
17:
18: void xsltParseStylesheetAttributeSet (xsltStylesheetPtr style,
19: xmlNodePtr cur);
20: void xsltFreeAttributeSetsHashes (xsltStylesheetPtr style);
21: void xsltApplyAttributeSet (xsltTransformContextPtr ctxt,
22: xmlNodePtr node,
23: xmlNodePtr inst,
24: xmlChar *attributes);
1.2 ! paf 25: void xsltResolveStylesheetAttributeSet(xsltStylesheetPtr style);
1.1 paf 26: #ifdef __cplusplus
27: }
28: #endif
29:
30: #endif /* __XML_XSLT_ATTRIBUTES_H__ */
31:
E-mail: