WRAPPER_API void set_Identifiers(const IdentifierCollection &)
Description
The set_Identifiers method sets the IdentifierCollection that
To learn more about identifiers, click here.
Example
void Serializable_setIdentifiers(GEOCALCPBW_NAMESPACE::Serializable * s)
{
GEOCALCPBW_NAMESPACE::IdentifierCollection idc;
idc.Add(L"GC", L"MyID");
idc.Add(L"Tim", L"AnotherID");
s->set_Identifiers(idc);
}
Comments
0 comments
Please sign in to leave a comment.