28 inline void operator()(xmlSchemaParserCtxtPtr ptr)
const {
29 xmlSchemaFreeParserCtxt(ptr);
31 inline void operator()(xmlSchemaValidCtxtPtr ptr)
const {
32 xmlSchemaFreeValidCtxt(ptr);
34 inline void operator()(xmlOutputBufferPtr ptr)
const {
35 xmlOutputBufferClose(ptr);
37 inline void operator()(xmlSchemaPtr ptr)
const { xmlSchemaFree(ptr); }
38 inline void operator()(xmlNodePtr ptr)
const { xmlFreeNode(ptr); }
39 inline void operator()(xmlDocPtr ptr)
const { xmlFreeDoc(ptr); }
40 inline void operator()(xmlChar* ptr)
const { xmlFree(ptr); }