WRAPPER_API IdentifierCollection &get_Identifiers()
The get_Identifiers method returns the IdentifierCollection that stores the identifiers for this object.
void Serializable_getIdentifiers(GEOCALCPBW_NAMESPACE::Serializable * s)
{
CString description;
description += "Name = ";
description += s->get_Name();
description += ",\n";
if(s->get_Identifiers().Exists(_towchar("GC").c_str()))
{
description += "Issuer = \"GC\", ";
description += "Code = ";
description += s->get_Identifiers().get_Item(_towchar("GC").c_str());
description += ",\n";
}
description += "Remarks = ";
description += s->get_Remarks();
MessageBox(0, description, "", 0);
}