CreateIdentifierCollection Constructor

WRAPPER_API static IdentifierCollection* CreateIdentifierCollection()

 

Description

The CreateIdentifierCollection constructor creates a new instance of the IdentifierCollection class.  The newly created IdentifierCollection will not contain any identifiers.

 

Example

void IdentifierCollection_CreateIdentifierCollection()

{

GEOCALCPBW_NAMESPACE::IdentifierCollection * idc = GEOCALCPBW_NAMESPACE::IdentifierCollection::CreateIdentifierCollection();

idc->Add(L"GC", L"MyID");

GEOCALCPBW_NAMESPACE::Disposal::Dispose(idc);

}