On Wed, Oct 29, 2008 at 6:49 PM, klaas.holwerda <[EMAIL PROTECTED]> wrote:
> Hi John,
>
> It worked, but something went wrong, but it looks the solution is simple.
> Operator+ and operator<<
>
> Need ".operator" like this:
>
>    a2dBoundingBox* returns = &(*self).operator+(*arg1);
>    a2dIOHandlerXMLWrite* returns = &(*self).operator<<(wc);
>

This should work too, hopefully, I think and it doesn't require any
exceptions. I've changed CVS to do this.

a2dBoundingBox* returns = &((*self)+(*arg1));
a2dIOHandlerXMLWrite* returns = &((*self)<<(wc));

Regards,
    John

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
wxlua-users mailing list
wxlua-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wxlua-users

Reply via email to