HasIdentifierIn Method

WRAPPER_API bool HasIdentifierIn(Serializable &value)

 

Description

The HasIdentifierIn method indicates if this object has an identifier that is also contained in the specified object.

 

Example

void Serializable_HasIdentifierIn(GEOCALCPBW_NAMESPACE::Serializable * s1, GEOCALCPBW_NAMESPACE::Serializable * s2)

{

if(s1->HasIdentifierIn(*s2))

{

// Then *s1 has an identifier that is also present in *s2

}

}