
5 Apr
2007
5 Apr
'07
8:42 a.m.
Robert Ramey wrote:
*this is not a pointer. Hence oa << make_nvp("myp",*this);
Does not serialize through a pointer to the base class. Try the following instead:
oa << make_nvp("myp",this);
Robert Ramey
Ups - my stupidity. This now works as described. Thanks and have a good easter time, Ruediger