| 17 | |
| 18 | template<typename T> |
| 19 | inline T interface_check(T inObj,int interfaceId) |
| 20 | { |
| 21 | Dynamic d(inObj); |
| 22 | if ( !d.mPtr || !d->_hx_getInterface(interfaceId)) |
| 23 | hx::BadCast(); |
| 24 | return inObj; |
| 25 | } |
| 26 | |
| 27 | } |
| 28 |
nothing calls this directly
no test coverage detected