Index: trunk/src_plugins/sketch_route/cdt/edge.h =================================================================== --- trunk/src_plugins/sketch_route/cdt/edge.h (revision 18206) +++ trunk/src_plugins/sketch_route/cdt/edge.h (revision 18207) @@ -11,6 +11,7 @@ triangle_t *adj_t[2]; int is_constrained; + void *data; }; typedef edge_t* edge_ptr_t; Index: trunk/src_plugins/sketch_route/cdt/point.h =================================================================== --- trunk/src_plugins/sketch_route/cdt/point.h (revision 18206) +++ trunk/src_plugins/sketch_route/cdt/point.h (revision 18207) @@ -10,6 +10,8 @@ pos_t pos; edgelist_node_t *adj_edges; trianglelist_node_t *adj_triangles; + + void *data; }; typedef point_t* point_ptr_t;