WRAPPER_API long get_Count() const
The get_Count method indicates the number of identifiers in this IdentifierCollection.
void IdentifierCollection_getCount(GEOCALCPBW_NAMESPACE::IdentifierCollection & idc)
{
for(int i = 0; i < idc.get_Count(); i++)
{
const BmgChar * issuer;
const BmgChar * code;
idc.GetItemByIndex(i, &issuer, &code);
}
}