ossp-pkg/cfg/cfg_node.h 1.3 -> 1.4
--- cfg_node.h 2002/07/04 12:30:08 1.3
+++ cfg_node.h 2002/07/10 12:00:23 1.4
@@ -37,6 +37,7 @@
struct cfg_node_st {
/* node linkage */
cfg_node_t *parent; /* pointer to parent node */
+ cfg_node_t *lbroth; /* pointer to left brother node */
cfg_node_t *rbroth; /* pointer to right brother node */
cfg_node_t *child1; /* pointer to first child node */
@@ -46,6 +47,10 @@
/* node annotation */
cfg_data_t data; /* annotation data */
+
+ /* node source location */
+ char *name; /* name of original source configuration */
+ int offset; /* offset into original source configuration */
};
#endif /* __CFG_NODE_H__ */
|
|