| 424 | T *call; |
| 425 | |
| 426 | inline Function( ) { } |
| 427 | inline Function( const Function &inRHS ) : call(inRHS.call) { } |
| 428 | inline Function( const Dynamic &inRHS) { call = inRHS==null()?0: (T*)inRHS->__GetHandle(); } |
| 429 | inline Function( const null &inRHS ) { call = 0; } |
nothing calls this directly
no test coverage detected