Path: blob/master/venv/Lib/site-packages/lxml/includes/libxslt/attributes.h
811 views
/*1* Summary: interface for the XSLT attribute handling2* Description: this module handles the specificities of attribute3* and attribute groups processing.4*5* Copy: See Copyright for the status of this software.6*7* Author: Daniel Veillard8*/910#ifndef __XML_XSLT_ATTRIBUTES_H__11#define __XML_XSLT_ATTRIBUTES_H__1213#include <libxml/tree.h>14#include "xsltexports.h"1516#ifdef __cplusplus17extern "C" {18#endif1920XSLTPUBFUN void XSLTCALL21xsltParseStylesheetAttributeSet (xsltStylesheetPtr style,22xmlNodePtr cur);23XSLTPUBFUN void XSLTCALL24xsltFreeAttributeSetsHashes (xsltStylesheetPtr style);25XSLTPUBFUN void XSLTCALL26xsltApplyAttributeSet (xsltTransformContextPtr ctxt,27xmlNodePtr node,28xmlNodePtr inst,29const xmlChar *attributes);30XSLTPUBFUN void XSLTCALL31xsltResolveStylesheetAttributeSet(xsltStylesheetPtr style);32#ifdef __cplusplus33}34#endif3536#endif /* __XML_XSLT_ATTRIBUTES_H__ */37383940