| 55 | // ------------------------------------------------------------------------------------------------- |
| 56 | |
| 57 | void |
| 58 | WXMPIterator_TableCTor_1 ( XMP_StringPtr schemaNS, |
| 59 | XMP_StringPtr propName, |
| 60 | XMP_OptionBits options, |
| 61 | WXMP_Result * wResult ) |
| 62 | { |
| 63 | XMP_ENTER_WRAPPER ( "WXMPIterator_TableCTor_1" ) |
| 64 | |
| 65 | if ( schemaNS == 0 ) schemaNS = ""; |
| 66 | if ( propName == 0 ) propName = ""; |
| 67 | |
| 68 | XMPIterator * iter = new XMPIterator ( schemaNS, propName, options ); |
| 69 | ++iter->clientRefs; |
| 70 | XMP_Assert ( iter->clientRefs == 1 ); |
| 71 | wResult->ptrResult = XMPIteratorRef ( iter ); |
| 72 | |
| 73 | XMP_EXIT_WRAPPER |
| 74 | } |
| 75 | |
| 76 | // ------------------------------------------------------------------------------------------------- |
| 77 |
nothing calls this directly
no outgoing calls
no test coverage detected