
20 Apr
2006
20 Apr
'06
7:34 a.m.
On Wednesday 19 Apr 2006 21:26, Johan Oudinet wrote:
Should that be something like:
default_writer dw; default_writer gw; write_graphviz(of, theMap, pw, dw, gw, get(&place.getNumber(), theMap));
No, you're get parameter is wrong, try this : write_graphviz (of, theMap, pw, dw, gw, get (&place::number, theMap));
Yes, I gathered that last night when I tried it. This also means that I need to have public attributes instead of get functions... :-( Thanks anyway. Fred