How do I get a handle to an object from one of its member functions? I
cannot find anything in the docs that shows a handle version of the
"this" pointer - but there has to be one - right?
Thanks,
-Chris
Julian Templeman - 25 Mar 2006 04:39 GMT
> How do I get a handle to an object from one of its member functions? I
> cannot find anything in the docs that shows a handle version of the
> "this" pointer - but there has to be one - right?
'this' is still around. Given a type T, 'this' is now defined as 'T^
const' and you can use it with the -> operator.
hth,
julian