| 258 | inline Variant::Variant(const id inObjc) { type=typeObject; valObject = Dynamic(inObjc).mPtr; } |
| 259 | #ifdef OBJC_ARC |
| 260 | inline Variant::operator id () const { return type==typeObject && valObject ? (__bridge id)valObject->__GetHandle() : 0; } |
| 261 | #else |
| 262 | inline Variant::operator id () const { return type==typeObject && valObject ? (id)valObject->__GetHandle() : 0; } |
| 263 | #endif |
no test coverage detected