WRAPPER_API const BmgChar *get_Name()
The get_Name method returns the name of this object.
void Serializable_getName(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);
}