summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Dauvergne <bdauvergne@entrouvert.com>2008-11-03 14:15:41 +0000
committerBenjamin Dauvergne <bdauvergne@entrouvert.com>2008-11-03 14:15:41 +0000
commit10156acfa832ffc0d4a8626be04411d1821862a8 (patch)
tree9ab53a67d13b60b29b418610d5c050170c4def5c
parentb332d295da8229663fd202f173cb41b62a456606 (diff)
Add original_xmlNode pointer to LassoNode
* lasso/xml/xml.h: add an xmlNode field to base class LassoNode, to permit retrieving the xmlNode originally parsed when the structure is the result of parsing. Will be used by signature checking code.
-rw-r--r--lasso/xml/xml.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lasso/xml/xml.h b/lasso/xml/xml.h
index c737b85f..b25ee63f 100644
--- a/lasso/xml/xml.h
+++ b/lasso/xml/xml.h
@@ -108,6 +108,7 @@ typedef struct _LassoNodeClassData LassoNodeClassData;
**/
struct _LassoNode {
GObject parent;
+ xmlNodePtr original_xmlNode;
};
struct _LassoNodeClass {