| 1146 | |
| 1147 | template< typename R, typename ...ArgTs > |
| 1148 | R call(ArgTs ...args) const |
| 1149 | { |
| 1150 | typedef R( FunctionType )( EngineObject*, ArgTs... ); |
| 1151 | return R( reinterpret_cast< FunctionType* >( const_cast<void*>(mFn) )( mThis, args... ) ); |
| 1152 | } |
| 1153 | |
| 1154 | }; |
| 1155 |
no outgoing calls
no test coverage detected