summaryrefslogtreecommitdiffstats
path: root/lasso/xml/xml.h
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-07-20 17:10:56 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-07-20 17:10:56 +0000
commite9b0fe8068bf20ef592d35f84d920dd3a6c0a50a (patch)
tree910453dfc5bec0ac3ef7c8f62a63576776e9b376 /lasso/xml/xml.h
parentf48b33d473cb37aa72d29c6d98311602d30cedf4 (diff)
downloadlasso-e9b0fe8068bf20ef592d35f84d920dd3a6c0a50a.tar.gz
lasso-e9b0fe8068bf20ef592d35f84d920dd3a6c0a50a.tar.xz
lasso-e9b0fe8068bf20ef592d35f84d920dd3a6c0a50a.zip
Added method lasso_node_import_from_node()
Diffstat (limited to 'lasso/xml/xml.h')
-rw-r--r--lasso/xml/xml.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/lasso/xml/xml.h b/lasso/xml/xml.h
index 2d89cbb3..39685216 100644
--- a/lasso/xml/xml.h
+++ b/lasso/xml/xml.h
@@ -94,6 +94,8 @@ struct _LassoNodeClass {
const xmlChar* (* get_name) (LassoNode *node);
void (* import) (LassoNode *node,
const xmlChar *buffer);
+ void (* import_from_node) (LassoNode *node,
+ LassoNode *imported_node);
void (* rename_prop) (LassoNode *node,
const xmlChar *old_name,
const xmlChar *new_name);
@@ -176,6 +178,9 @@ LASSO_EXPORT const xmlChar* lasso_node_get_name (LassoNode *node);
LASSO_EXPORT void lasso_node_import (LassoNode *node,
const xmlChar *buffer);
+LASSO_EXPORT void lasso_node_import_from_node (LassoNode *node,
+ LassoNode *imported_node);
+
LASSO_EXPORT void lasso_node_rename_prop (LassoNode *node,
const xmlChar *old_name,
const xmlChar *new_name);