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