| 208 | T *ptr; |
| 209 | |
| 210 | inline Pointer( ) : ptr(0) { } |
| 211 | inline Pointer( const Pointer &inRHS ) : ptr(inRHS.ptr) { } |
| 212 | inline Pointer( const Dynamic &inRHS) { ptr = inRHS==null()?0: (T*)inRHS->__GetHandle(); } |
| 213 | inline Pointer( const null &inRHS ) : ptr(0) { } |
no test coverage detected