summaryrefslogtreecommitdiffstats
path: root/python/xml/py_xml.h
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-05-16 22:32:52 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-05-16 22:32:52 +0000
commit3dad242cb2e4a27731622d6c94ae7fa330bad227 (patch)
tree04a5de019fde3672a828239ba3f2863efb5221e2 /python/xml/py_xml.h
parent98d6264eadc827ff34e1bee2d3643f43567c00d0 (diff)
downloadlasso-3dad242cb2e4a27731622d6c94ae7fa330bad227.tar.gz
lasso-3dad242cb2e4a27731622d6c94ae7fa330bad227.tar.xz
lasso-3dad242cb2e4a27731622d6c94ae7fa330bad227.zip
New method lasso_node_destroy() added in class LassoNode
Diffstat (limited to 'python/xml/py_xml.h')
-rw-r--r--python/xml/py_xml.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/xml/py_xml.h b/python/xml/py_xml.h
index 82d9fed4..35665f84 100644
--- a/python/xml/py_xml.h
+++ b/python/xml/py_xml.h
@@ -36,6 +36,7 @@ typedef struct {
#define LassoNode_get(v) (((v) == Py_None) ? NULL : (((LassoNode_object *)(PyObject_GetAttr(v, PyString_FromString("_o"))))->obj))
PyObject *LassoNode_wrap(LassoNode *node);
+PyObject *node_destroy(PyObject *self, PyObject *args);
PyObject *node_dump(PyObject *self, PyObject *args);
PyObject *node_export(PyObject *self, PyObject *args);
PyObject *node_export_to_base64(PyObject *self, PyObject *args);
@@ -44,7 +45,6 @@ PyObject *node_export_to_soap(PyObject *self, PyObject *args);
PyObject *node_get_attr_value(PyObject *self, PyObject *args);
PyObject *node_get_child(PyObject *self, PyObject *args);
PyObject *node_get_content(PyObject *self, PyObject *args);
-PyObject *node_unref(PyObject *self, PyObject *args);
PyObject *node_verify_signature(PyObject *self, PyObject *args);
#endif /* __PYLASSO_PY_XML_H__ */