get_Identifiers Method

WRAPPER_API IdentifierCollection &get_Identifiers()

 

Description

The get_Identifiers method returns the IdentifierCollection that stores the identifiers for this object.

 

Example

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);

}