Obtaining Handle to Object from Member Function

  • Thread starter Thread starter Chris Edgington
  • Start date Start date
C

Chris Edgington

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
 
Chris said:
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
 
Back
Top