Douglas Gregor wrote:
> Creating new visitors in the BGL can be a pain, because it may require a
> lot of extra typing for simple cases. I'd like to add the ability to attach
> function objects to visitor events like this:
>
>   dfs_visitor<>()
>     .do_on_back_edge(var(has_cycle) = true)
>     .do_on_tree_edge(bind(&vector<edge>::push_back, ref(tree_edges), _1));
>
> I'd really prefer "on_XXX" instead of "do_on_XXX", but GCC trips over the
> former syntax. Anyway, the code is ready to check in if there are no
> objections. The patch isn't very large, but is bigger than I would like to
> post here.

Hi Doug,
did you commit that patch already? I can't find anything named "do_on" in 
current CVS.

- Volodya


_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost

Reply via email to