/*
 * Checks that the id associated with the given object is unique.  If it
 * is not, logIdConflict is called.
 */
void
UniqueIdBase::doCheckId (const SBase& object)
{
  if (object.isSetIdAttribute())
  {
    doCheckId(object.getIdAttribute(), object);
  }
}