IdentifierCollection Constructor

WRAPPER_API IdentifierCollection()

WRAPPER_API IdentifierCollection(const IdentifierCollection &source)

 

Description

The IdentifierCollection constructor creates a new instance of the IdentifierCollection class.  The default constructor takes no arguments and produces an empty IdentifierCollection.  The second constructor is a copy-constructor, which produces an IdentifierCollection with the same value as the IdentifierCollection passed as argument.

 

Example

void IdentifierCollection_IdentifierCollection()

{

GEOCALCPBW_NAMESPACE::IdentifierCollection idc;

idc.Add(L"GC", L"MyID");

}